Skip to content

Instantly share code, notes, and snippets.

@shearluck
Created May 11, 2020 08:34
Show Gist options
  • Save shearluck/1d5a2470ca54c1a6b336890a2708f312 to your computer and use it in GitHub Desktop.
Save shearluck/1d5a2470ca54c1a6b336890a2708f312 to your computer and use it in GitHub Desktop.
Linux random password generator
LEN=$1
< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c$LEN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment