###### tags: `howto`
# UUID bonanza
For all of the people needing to generate UUIDs multiple times a day, this is a simple alias that should work on any OSX system:
```shell
alias uuid="uuidgen | tr '[:upper:]' '[:lower:]' | tr -d '\n' | tee >(pbcopy)"
```
It also copies the generated UUID on your clipboard :rocket: