FiveFeet
Generate random password

Generates password consisting of alphanumeric characters, defaults to 16 characters unless argument given.

$ randpw(){ < /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-16};echo;}