Skip to content

Instantly share code, notes, and snippets.

@postazure
Created October 15, 2018 19:06
Show Gist options
  • Save postazure/329ea673cd3ff5d3755a00b512cb7153 to your computer and use it in GitHub Desktop.
Save postazure/329ea673cd3ff5d3755a00b512cb7153 to your computer and use it in GitHub Desktop.
UUID generating script that also places the uuid in the clipboard
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