Created
October 16, 2024 07:28
-
-
Save teebow1e/8be518b711310fdb6728c077983a9685 to your computer and use it in GitHub Desktop.
[Utility] Generate hash-like string with length
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 | |
head /dev/urandom | tr -dc 'a-f0-9' | head -c 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment