Last active
June 23, 2020 12:04
-
-
Save vadimkantorov/0f1b939e1f69dc6f8b306de975da7cfe to your computer and use it in GitHub Desktop.
Generate a random password
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
echo $(< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c10) | |
alias genpass='echo $(< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c10)' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment