Created
October 15, 2018 19:06
-
-
Save postazure/329ea673cd3ff5d3755a00b512cb7153 to your computer and use it in GitHub Desktop.
UUID generating script that also places the uuid in the clipboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
uuid () { | |
UUID=$(uuidgen) && echo $UUID | pbcopy && echo $UUID | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment