Skip to content

Instantly share code, notes, and snippets.

@kevinquinnyo
Created December 15, 2015 23:42
Show Gist options
  • Select an option

  • Save kevinquinnyo/e543ececf54c2898bd2c to your computer and use it in GitHub Desktop.

Select an option

Save kevinquinnyo/e543ececf54c2898bd2c to your computer and use it in GitHub Desktop.
genpass ()
{
if [[ -n "$1" ]]; then
c="$1";
else
c=12;
fi;
cat /dev/urandom | tr -dc "[:alnum:][:punct:]" | head -c$c;
echo
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment