A simple command-line tool to generate secure passwords with customizable options. Built with Go.
git clone https://github.com/Amizhthanmd/password-generator-cli.git
cd password-generator-cli
go build -o password-generator
Generate a password with various customizable options:
./password-generator generate
Generate a password with a specific length and no uppercase letters:
./password-generator generate -t 16 -u=false
Generate a password without lowercase letters:
./password-generator generate -l=false
Generate a password without symbols:
./password-generator generate -s=false