Created
December 5, 2017 09:27
-
-
Save jenslohmann/819d5814ab601796e2b1b7a9dff4b52a to your computer and use it in GitHub Desktop.
Poor man's password generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while pwd=$(openssl rand -base64 9); [[ ${pwd} == *[[:punct:]]* ]]; do :; done; echo ${pwd} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment