Skip to content

Instantly share code, notes, and snippets.

@zeuxisoo
Created April 12, 2011 08:14
Show Gist options
  • Save zeuxisoo/915151 to your computer and use it in GitHub Desktop.
Save zeuxisoo/915151 to your computer and use it in GitHub Desktop.
bashrc gen random password function
genpw() {
local l=$1
[ "$l" == "" ] && l=16
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