Skip to content

Instantly share code, notes, and snippets.

@mims92
Created November 28, 2017 10:14
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/3ebfa6053121fb6490882eda7d7dbd11 to your computer and use it in GitHub Desktop.
Save mims92/3ebfa6053121fb6490882eda7d7dbd11 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 '12345!@#$%qwertQWERTasdfgASDFGzxcvbZXCVB' | head -c16; echo ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment