generate passwords at the console.
Go to file
Greg Gauthier 7a582b216e
CMake / build (push) Successful in 28s Details
add build instructions to the readme
2024-02-23 20:31:03 +00:00
.gitea/workflows remove exposing echo 2024-02-22 14:56:17 +00:00
.gitignore add cmakelists 2020-10-22 13:13:54 +01:00
CMakeLists.txt add build instructions to the readme 2024-02-23 20:31:03 +00:00
README.md add build instructions to the readme 2024-02-23 20:31:03 +00:00
passwdgen.cpp rename source file; fix argument parsing; 2020-11-07 09:52:46 +00:00

README.md

passwdgen

a rudimentary random string password generator

For demo purposes only

Build

Bare Bones

mkdir build
g++ -o build/passwdgen ./passwdgen.cpp

From CMAKE

mkdir build
cd build
cmake ..
make 

Then, just copy the compiled binary to somewhere on your $PATH