Created
July 22, 2024 14:22
-
-
Save sonkol/c10271e7046ed2267dda22c28cb34f9d to your computer and use it in GitHub Desktop.
Generate random 4 digit numbers
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
cat /dev/urandom | tr -cd "0-9" | head -c 60 | sed "s/.\{4\}/&\n/g" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment