Crates.io | ayu |
lib.rs | ayu |
version | 0.3.0 |
source | src |
created_at | 2020-02-28 17:16:47.595103 |
updated_at | 2020-03-02 12:38:14.093111 |
description | A tool to generate random password |
homepage | https://github.com/weizhang9/ayu |
repository | https://github.com/weizhang9/ayu |
max_upload_size | |
id | 213596 |
size | 19,068 |
This is a command line tool to generate random password.
brew install rust
on MacOS will get you rustup and cargo
cargo install ayu
path/to/ayu
to your $PATH
variable in your .bashrc fileayu -h
to see all the information.USAGE:
ayu [FLAGS] [OPTIONS]
FLAGS:
-N, --lowercase Return password in LOWERCASE, invalid if used with UPPERCASE flag -U
-U, --uppercase Return password in UPPERCASE, invalid if used with LOWERCASE flag -N
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-C, --char <CHARSET> [OPTIONAL] desired password CHARSET
Options include:
1) Alphanumeric + Special characters (default)
2) Alphanumeric
3) Alphabetic
4) Numberic
-L, --len <LENGTH> [OPTIONAL] desired password LENGTH (default: 18)
ayu
This command generates a random password of a length of 18 and it contains alphameric + special charset, which is the default charset.
ayu -L=20 -C=2 -U
This command generates a random password of a length of 20 and it contains uppercase alphameric.
This tool is passively maintained. If you encountered an issue or have any suggestions, please submit here. Contributions are always welcome. :)