Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 
Peter Dave Hello 96af69af3b
Ensure final newline char in text files, following .editorconfig (#575)
il y a 3 ans
..
lesspass Ensure final newline char in text files, following .editorconfig (#575) il y a 3 ans
tests Ensure final newline char in text files, following .editorconfig (#575) il y a 3 ans
.gitignore Replace lesspass-cli on npmjs with a lesspass on pypi il y a 6 ans
README.md Update cli version number and doc, add breaking change il y a 4 ans
deploy Ensure final newline char in text files, following .editorconfig (#575) il y a 3 ans
requirements.txt Ensure final newline char in text files, following .editorconfig (#575) il y a 3 ans
setup.py Fix deploy on travis il y a 5 ans
test Ensure final newline char in text files, following .editorconfig (#575) il y a 3 ans
test-requirements.txt Added a unit test for keyboard interrupt il y a 5 ans

README.md

LessPass command-line interface (CLI)

Install

python3 -m pip install --user lesspass

Usage

lesspass SITE [LOGIN] [MASTER_PASSWORD] [OPTIONS]

Arguments:

SITE                site used in the password generation (required)
LOGIN               login used in the password generation
                    default to '' if not provided
MASTER_PASSWORD     master password used in password generation
                    default to LESSPASS_MASTER_PASSWORD env variable or prompt

Options:

-l, --lowercase      add lowercase in password
-u, --uppercase      add uppercase in password
-d, --digits         add digits in password
-s, --symbols        add symbols in password
-L, --length         int (default 16, max 35)
-C, --counter        int (default 1)
-p, --prompt         interactively prompt SITE and LOGIN (prevent leak to shell history)
--no-fingerprint     hide visual fingerprint of the master password when you type
--no-lowercase       remove lowercase from password
--no-uppercase       remove uppercase from password
--no-digits          remove digits from password
--no-symbols         remove symbols from password
--exclude            remove chars from password
-c, --clipboard      copy generated password to clipboard rather than displaying it.
                     Need pbcopy (OSX), xsel or xclip (Linux) or clip (Windows).
-v, --version        lesspass version number

Examples

no symbols

lesspass site login masterpassword --no-symbols

no symbols shortcut

lesspass site login masterpassword -lud

only digits and length of 8

lesspass site login masterpassword -d -L8

master password in env variable

LESSPASS_MASTER_PASSWORD="masterpassword" lesspass site login

License

This project is licensed under the terms of the GNU GPLv3.