Super simple password generator wizard. Customize character types (lowercase, numbers, symbols, uppercase) and length.
Default choices:
Choice | Value |
---|---|
types | lowercase, numbers, uppercase |
length | 20 |
In the pw
directory:
$ npm install # before first run
$ node .
I create a ~/bin/pw
file with contents such as the following:
#!/bin/bash
cd /path/to/pw
node . "$@"
Then add ~/bin
to your path if it's not already there and chmod u+x ~/bin/pw
and you can start it via
$ pw
from anywhere.
Option | Action |
---|---|
--save | Save the choices of the current run as default |
--help | Display help information |
--reset | Reset default choices to original |
--version | Display current version |