Last active
June 3, 2019 13:37
-
-
Save javiervivanco/b6d300cdc1ae6d3a6de7517058623b4e to your computer and use it in GitHub Desktop.
random pass generator
This file contains 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 | |
for i in $(seq 1 10);do openssl rand 14 -base64 ; done | |
# $HOME/.bash_profile | |
# alias random-pass='for i in $(seq 1 10);do openssl rand 14 -base64 ; done' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment