Skip to content

Instantly share code, notes, and snippets.

@simonausten
Created October 28, 2014 11:33
Show Gist options
  • Save simonausten/03a56c28750f23f2da79 to your computer and use it in GitHub Desktop.
Save simonausten/03a56c28750f23f2da79 to your computer and use it in GitHub Desktop.
Bash password generator
export LC_CTYPE=C; cat /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c 15 | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment