From 4241093fed4079d83fdc9dfd423cfdd609ec24b8 Mon Sep 17 00:00:00 2001 From: Guillaume Vincent Date: Thu, 17 Feb 2022 14:19:12 +0100 Subject: [PATCH] Update cli Readme --- cli/README.md | 55 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 29 insertions(+), 26 deletions(-) diff --git a/cli/README.md b/cli/README.md index 3cc9b25..dd9a7a5 100644 --- a/cli/README.md +++ b/cli/README.md @@ -8,32 +8,35 @@ 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 + LessPass is a stateless password manager. + + positional arguments: + site site used in the password generation (required) + login login used in the password generation. Default to ''. + master_password master password used in password generation. Default to LESSPASS_MASTER_PASSWORD env variable or prompt. + + optional arguments: + -h, --help show this help message and exit + -v, --version show program's version number and exit + -L [5-35], --length [5-35] + password length (default: 16, min: 5, max: 35) + -C COUNTER, --counter COUNTER + password counter (default: 1) + -p, --prompt prompt for values interactively + -c, --copy copy the password to clipboard + --exclude EXCLUDE exclude char from generated password + --no-fingerprint hide visual fingerprint of the master password when you type + --save [SAVE_PATH] [beta] Save your password profiles. /!\ File not encrypted. Use carefully. (default: /Users/guillaume/.config/lesspass/profiles.json) + --load LOAD_PATH [beta] Load your password profiles file + --url URL [beta] LessPass Database URL used by --save and --load command + -l, --lowercase add lowercase in password + --no-lowercase remove lowercase from password + -u, --uppercase add uppercase in password + --no-uppercase remove uppercase from password + -d, --digits add digits in password + --no-digits remove digits from password + -s, --symbols add symbols in password + --no-symbols remove symbols from password ## Examples