A command line script written in PHP to generate random alphanumeric passwords
Command Line Password Generator
I keep a copy of this script in /usr/local/bin.
#!/usr/bin/php -q
<?php
echo substr(base64_encode(sha1(microtime()."-".srand())),0,16)."\n";
?>
Download
genpass (251 B)
