7 lines
153 B
Bash
Executable File
7 lines
153 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# uuidc - generate and copy a lower-case UUID v4
|
|
|
|
# TODO: fix for Linux
|
|
uuidgen | tr '[:upper:]' '[:lower:]' | tr -d '\n' | pbcopy
|