Skip to content

Instantly share code, notes, and snippets.

@pascalandy
Created April 2, 2016 20:40
Show Gist options
  • Save pascalandy/b1059204c6ce4f974ef5109403e2e946 to your computer and use it in GitHub Desktop.
Save pascalandy/b1059204c6ce4f974ef5109403e2e946 to your computer and use it in GitHub Desktop.
bash PASSWORD GENERATOR. 44 alpha-num password
echo "START - Password generator" &&
DEPLOY_ID=g99999101_131 &&
DB_PASSWORD=`openssl rand -hex 22` &&
echo '' &&
echo Password for $DEPLOY_ID is: $DB_PASSWORD &&
echo '' &&
echo "END - Password generator"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment