Skip to content

Instantly share code, notes, and snippets.

@aniketpant
Created July 14, 2016 11:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aniketpant/b2551aed8641e34318384674457f1645 to your computer and use it in GitHub Desktop.
Save aniketpant/b2551aed8641e34318384674457f1645 to your computer and use it in GitHub Desktop.
Useful terminal commands for osx
# generate a lowercase UUID
uuidgen | tr '[:upper:]' '[:lower:]'
# generate a random number between min and max
awk -v min=7000000000 -v max=9000000000 'BEGIN{srand(); print int(min+rand()*(max-min+1))}'
# copy to pasteboard after trimming endline
tr -d '\n' | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment