/ Published in: Bash
This snippet will produce an alpha-numeric 16 character password
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-16};echo;