Skip to content

Instantly share code, notes, and snippets.

@thiagoeh
Created May 16, 2018 16:49
Show Gist options
  • Save thiagoeh/c0ea94573f925c49607bdf14856a849e to your computer and use it in GitHub Desktop.
Save thiagoeh/c0ea94573f925c49607bdf14856a849e to your computer and use it in GitHub Desktop.
Random password from shell
cat /dev/urandom | tr -dc A-Z-a-z-0-9 | head -c${1:-32};echo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment