Skip to content

Instantly share code, notes, and snippets.

@jimmyhoran
Forked from dhoelle/uuid.sh
Created April 17, 2023 23:38
Show Gist options
  • Save jimmyhoran/fcdfa6c3e74722896c5e09a049a31a44 to your computer and use it in GitHub Desktop.
Save jimmyhoran/fcdfa6c3e74722896c5e09a049a31a44 to your computer and use it in GitHub Desktop.
bash function to generate a random, lower-cased UUID in MacOS
uuid () {
local newuuid=${$(uuidgen):l}
echo -n ${newuuid} | pbcopy
echo "copied ${newuuid} to clipboard"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment