Created
January 15, 2023 18:33
-
-
Save isaacgr/67bb8831a1332a8ee8f4d25fcf9b4a49 to your computer and use it in GitHub Desktop.
Generate 32 character random string from command line
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
head /dev/urandom | LC_ALL=C tr -dc 'A-Za-z0-9' | head -c 32 && echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment