>mkpw chmod +x mkpw mkpw: #!/usr/bin/bash
function mkpw() { head /dev/urandom | uuencode -m – | sed -n 2p | cut -c1-${1:-8}; }
mkpw;
./mkpw
You must be logged in to post a comment.