tldr/pages/linux/uuidgen.md

18 lines
374 B
Markdown
Raw Normal View History

2018-12-20 16:51:49 +00:00
# uuidgen
> Generate unique identifiers (UUIDs).
> See also `uuid`.
> More information: <https://manned.org/uuidgen>.
2018-12-20 16:51:49 +00:00
- Create a random UUIDv4:
2018-12-20 16:51:49 +00:00
`uuidgen --random`
- Create a UUIDv1 based on the current time:
2018-12-20 16:51:49 +00:00
`uuidgen --time`
- Create a UUIDv5 of the name with a specified namespace prefix:
2018-12-20 16:51:49 +00:00
`uuidgen --sha1 --namespace {{@dns|@url|@oid|@x500}} --name {{object_name}}`