mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-11 09:47:22 +00:00
Update cheatsheets
This commit is contained in:
38
linux/uuidparse
Normal file
38
linux/uuidparse
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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:
|
||||
|
||||
`uuidparse --json {{uuid1 uuid2 ...}}`
|
||||
|
||||
- Do not print a header line:
|
||||
|
||||
`uuidparse --noheadings {{uuid1 uuid2 ...}}`
|
||||
|
||||
- Use the raw output format:
|
||||
|
||||
`uuidparse --raw {{uuid1 uuid2 ...}}`
|
||||
|
||||
- Specify which of the four output columns to print:
|
||||
|
||||
`uuidparse --output {{UUID,VARIANT,TYPE,TIME}}`
|
||||
|
||||
- Display help:
|
||||
|
||||
`uuidparse -h`
|
||||
Reference in New Issue
Block a user