Skip to content

Instantly share code, notes, and snippets.

@ah-cog
Last active March 19, 2022 09:25
Show Gist options
  • Save ah-cog/be5ba74a376d744c23a18c79df80e0bc to your computer and use it in GitHub Desktop.
Save ah-cog/be5ba74a376d744c23a18c79df80e0bc to your computer and use it in GitHub Desktop.
Generate random UUID with lowercase characters.
#!/bin/sh
uuidgen | awk '{print tolower($0)}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment