# rdmpass : generate random passwords
```
#!/bin/sh
l=42
openssl rand $l -base64 | tr -d /=+ | cut -c -$l
jot -rcs '' $l 32 126
tr -cd '[:alnum:]' < /dev/urandom | fold -w $l | head -n 1
tr -cd '[:alnum:]' < /dev/urandom |\
Happy helping ☃ here: You tried to output a spurious TAB character. This will break gopher. Please review your scripts. Have a nice day!
Happy helping ☃ here: You tried to output a spurious TAB character. This will break gopher. Please review your scripts. Have a nice day!
```