EN
Bash - generate random md5 sum
5
points
In this short article, we would like to show how generateĀ random md5 sum using Bash.
Quick solution (run in the command line):
cat /dev/random | tr -d -c 0-9a-zA-Z | head -c 32
or:
cat /dev/random | head -c 32 | md5sum | head -c 32
Ā
Example output:
b80832c98d809b5a75208198c76aa8c7
Ā