Skip to content

Instantly share code, notes, and snippets.

@bigandy
Created August 24, 2015 15:32
Show Gist options
  • Save bigandy/5257875c1b619d65c85d to your computer and use it in GitHub Desktop.
Save bigandy/5257875c1b619d65c85d to your computer and use it in GitHub Desktop.
pwgen Bash Function
pass() {
if [ -n "$1" ]
then
pwgen -sy $1 1 |pbcopy |pbpaste; echo " Has been copied to clipboard"
else
pwgen -sy 40 1 |pbcopy |pbpaste; echo "Has been copied to clipboard"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment