RC Logr 20200108 111937
Wednesday, 8 Jan, 2020
If you need to generate a uuid, say for a unique filename, on mac you can do it via the uuidgen
utility. Combine it with tr to remove the punctuation, and use pbcopy to slap it on the clipboard if you need. 🆔
uuidgen | tr -d - | tr -d '\n' | pbcopy
RC Logr 20200108 111937 - If you need to generate a …