Skip to content

Instantly share code, notes, and snippets.

@linuxboytoo
Last active March 21, 2016 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save linuxboytoo/8736422 to your computer and use it in GitHub Desktop.
Save linuxboytoo/8736422 to your computer and use it in GitHub Desktop.
Bash Random Password Generator
head -n100 /dev/urandom|strings|egrep -o '([a-zA-Z0-9#%&^])'|awk '{ORS=""; print $1}'|head -c 35; echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment