您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # LessPass command-line interface (CLI)
  2. ## Install
  3. python3 -m pip install --user lesspass # 3.6, 3.8+
  4. ## Usage
  5. lesspass SITE [LOGIN] [MASTER_PASSWORD] [OPTIONS]
  6. LessPass is a stateless password manager.
  7. positional arguments:
  8. site site used in the password generation (required)
  9. login login used in the password generation. Default to ''.
  10. master_password master password used in password generation. Default to LESSPASS_MASTER_PASSWORD env variable or prompt.
  11. optional arguments:
  12. -h, --help show this help message and exit
  13. -v, --version show program's version number and exit
  14. -L [5-35], --length [5-35]
  15. password length (default: 16, min: 5, max: 35)
  16. -C COUNTER, --counter COUNTER
  17. password counter (default: 1)
  18. -p, --prompt prompt for values interactively
  19. -c, --copy copy the password to clipboard
  20. --exclude EXCLUDE exclude char from generated password
  21. --no-fingerprint hide visual fingerprint of the master password when you type
  22. --save [SAVE_PATH] [beta] Save your password profiles. /!\ File not encrypted. Use carefully. (default: ~/.config/lesspass/profiles.json)
  23. --load LOAD_PATH [beta] Load your password profiles file
  24. --url URL [beta] LessPass Database URL used by --save and --load command
  25. -l, --lowercase add lowercase in password
  26. --no-lowercase remove lowercase from password
  27. -u, --uppercase add uppercase in password
  28. --no-uppercase remove uppercase from password
  29. -d, --digits add digits in password
  30. --no-digits remove digits from password
  31. -s, --symbols add symbols in password
  32. --no-symbols remove symbols from password
  33. ## Examples
  34. ### no symbols
  35. lesspass site login masterpassword --no-symbols
  36. ### no symbols shortcut
  37. lesspass site login masterpassword -lud
  38. ### only digits and length of 8
  39. lesspass site login masterpassword -d -L8
  40. ### master password in env variable
  41. LESSPASS_MASTER_PASSWORD="masterpassword" lesspass site login
  42. ## License
  43. This project is licensed under the terms of the GNU GPLv3.