Use openssl's md5 on 512 bytes of urandom, and then cut input to get just hash
echo $(dd if=/dev/urandom bs=512 count=1 2&> /dev/null) | openssl dgst -md5 | cut -d" " -f2
Makes a nice password!
No Comments Yet!