2024-01-23 08:26:57 +01:00
|
|
|
# uuidparse
|
|
|
|
|
|
|
|
> Parse universally unique identifiers.
|
|
|
|
> See also: `uuidgen`.
|
|
|
|
> More information: <https://manned.org/uuidparse.1>.
|
|
|
|
|
|
|
|
- Parse the specified UUIDs, use a tabular output format:
|
|
|
|
|
|
|
|
`uuidparse {{uuid1 uuid2 ...}}`
|
|
|
|
|
|
|
|
- Parse UUIDs from `stdin`:
|
|
|
|
|
|
|
|
`{{command}} | uuidparse`
|
|
|
|
|
|
|
|
- Use the JSON output format:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`uuidparse {{[-J|--json]}} {{uuid1 uuid2 ...}}`
|
2024-01-23 08:26:57 +01:00
|
|
|
|
|
|
|
- Do not print a header line:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`uuidparse {{[-n|--noheadings]}} {{uuid1 uuid2 ...}}`
|
2024-01-23 08:26:57 +01:00
|
|
|
|
|
|
|
- Use the raw output format:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`uuidparse {{[-r|--raw]}} {{uuid1 uuid2 ...}}`
|
2024-01-23 08:26:57 +01:00
|
|
|
|
|
|
|
- Specify which of the four output columns to print:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`uuidparse {{[-o|--output]}} {{UUID,VARIANT,TYPE,TIME}}`
|
2024-01-23 08:26:57 +01:00
|
|
|
|
|
|
|
- Display help:
|
|
|
|
|
2025-03-28 16:06:49 +02:00
|
|
|
`uuidparse {{[-h|--help]}}`
|