Created
October 20, 2022 18:12
-
-
Save fnzv/bf56c71a1d68e33016d252f329d74cb2 to your computer and use it in GitHub Desktop.
Generate random Alpha Numeric strings on txt file oneliner
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
for i in {1..100000}; do echo $(tr -dc A-Za-z0-9 </dev/urandom | head -c 5) >> output.txt; | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment