Generate Random Password

From UVOO Tech Wiki
Revision as of 18:00, 2 February 2022 by Busk (talk | contribs)
Jump to navigation Jump to search
< /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