Skip to content

Instantly share code, notes, and snippets.

@mims92
Last active December 1, 2017 07:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mims92/2f88e62c6c4a573e76d2d97203cb6e20 to your computer and use it in GitHub Desktop.
Save mims92/2f88e62c6c4a573e76d2d97203cb6e20 to your computer and use it in GitHub Desktop.
Linux - Bash - Random Password Generator
##################################################################################
# https://www.howtogeek.com/howto/30184/10-ways-to-generate-a-random-password-from-the-command-line/
##################################################################################
< /dev/urandom tr -dc "_A-Z-a-z-0-9&\/{}()@#^.?+=" | head -c16;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment