Here’s quick one liner to generate a random 14 digit password in bash. < /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-14};echo;
Unix tips, food reviews and astronomy.
Here’s quick one liner to generate a random 14 digit password in bash. < /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-14};echo;