Generate Random Password
Jump to navigation
Jump to search
< /dev/urandom tr -dc A-Za-z0-9 | head -c40 < /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-32};echo;
more
tr -dc A-Za-z0-9 </dev/urandom | head -c 13 ; echo '' tr -dc 'A-Za-z0-9!"#$%&'\''()*+,-./:;<=>?@[\]^_`{|}~' </dev/urandom | head -c 13 ; echo LC_ALL=C tr -dc 'A-Za-z0-9!"#$%&'\''()*+,-./:;<=>?@[\]^_`{|}~' </dev/urandom | head -c openssl rand -base64 12 openssl rand -hex 12