Skip to content

Instantly share code, notes, and snippets.

@JSONOrona
Created November 29, 2014 02:10
Show Gist options
  • Save JSONOrona/5602fa49dfdf97c689cb to your computer and use it in GitHub Desktop.
Save JSONOrona/5602fa49dfdf97c689cb to your computer and use it in GitHub Desktop.
Generates a strong random password
genpasswd() {
local l=$1
[ "$l" == "" ] && l=20
tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment