Last Updated: May 16, 2023
·
29.53K
· zedtux

uuidgen in lowercase on Mac OS X

uuidgen is a command line tool to generate UUIDs.

On Linux this command returns a lowercase string of a UUID.
But on Mac OS X it returning an uppercase string of a UUID.

So how to change this ?

I have created a simple alias as following:

uuidgen='uuidgen | tr "[:upper:]" "[:lower:]"'

Now executing uuidgen will output the following:

0ba34ef2-438a-4635-8f8b-86edec6aefdf

Simple :)