1.3.2 • Published 4 years ago
@thpadelis/gpass v1.3.2
gPass - Random Password Generator
Table of Contents
What is gPass?
gPass stands for Password Generator, it's a utility command line tool that allows you to generate random password.
Installation
Install the CLI globally. If you are windows user, run the command as administrator. If you are macOS user, add sudo before the following command. If you are linux user, you already know what you are doing.
npm install --global @thpadelis/gpassUsage
gpass [options]Options:
-V,--versionoutput the version number-l,--length <number>length of password (default: "10")-n,--number <number>generate number of passwords (default: "1")-s,--savesave password to passwords.txt (default: false)-el,--exclude-lowerexclude lower letters (default: false)-eu,--exclude-upperexclude upper letters (default: false)-en,--exclude-numbersexclude number (default: false)-es,--exclude-symbolsexclude symbols (default: false)-cp,--copycopy to clipboard (default: false)-p,--pincreate PIN (default: false)-h,--helpdisplay help for command
Examples
Generate password with length of 20 characters
gpass -l 20Generate password with no symbols
gpass -esGenerate password with no numbers
gpass -enGenerate password with only letters and length of 16
gpass -l 16 -es -enCreate PIN
gpass -pAdvice
- Use
gpassto generate random passwords. - Avoid to use a short passwords, try to use only passwords with 16+ characters.
- Do not share your passwords with any one.
- Do not reuse a password.