Command line password generator
.gitignore | 1 year ago | ||
README.md | 1 year ago | ||
package.lisp | 1 year ago | ||
pwg.asd | 1 year ago | ||
pwg.lisp | 1 year ago |
Generate random passwords
To run:
$> pwg
will return a random password with default length of 8
$> pwg [positive integer]
will return a random password with length of [positive integer] given as a parameter
To create a standalone executable:
$> sbcl
(ql:quickload :pwg)
(in-package :pwg)
(sb-ext:save-lisp-and-die "pwg" :toplevel #'main :executable t :compression 9)