Random password generator
Use cargo
package manager
sh
cargo install upwd
Generate a 12-character password using upper and lower case letters, numbers, special symbols and unicode characters.
upwd -uldso -L 12
For more information use --help
flag
```
upwd 0.3.0
Andrey Vikulov avikuloff@yandex.ru
Random password generator
USAGE: upwd [FLAGS] [OPTIONS]
FLAGS: -u, --uppercase Use UPPERCASE letters [A-Z] -l, --lowercase Use lowercase letters [a-z] -d, --digits Use digits [0-9] -s, --symbols Use special symbols [*&^%$#@!~] -o, --others Use other symbols [♕♖♗♘♙♚...] -i, --info Prints password information --config Sets config to default values -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-L, --length
If you do not specify any flags [--uppercase, --lowercase, --digits, --symbols, --others], then uppercase, lowercase letters and digits will be used. ```
Run program with --config
flag, this will create a config file at /path/to/config/dir/upwd/upwd.conf
.
Change the character sets in this file to your liking.
upwd
is distributed under the terms of both the MIT license and the Apache License (Version 2.0).