Skip to content

Instantly share code, notes, and snippets.

@evmn
Created September 16, 2020 06:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evmn/fa0667c401f69af8012c336e440fad82 to your computer and use it in GitHub Desktop.
Save evmn/fa0667c401f69af8012c336e440fad82 to your computer and use it in GitHub Desktop.
generate 30 uuid
#!/bin/bash
cat /dev/urandom | \
tr -dc "a-f0-9"| \
fold -w 36 | \
head -n 30 | \
sed -E -e 's/(.{8}).(.{4}).(.{4}).(.{4}).(.*)/\1-\2-\3-\4-\5/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment