diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 19:10:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 19:10:49 +0000 |
commit | cfe5e3905201349e9cf3f95d52ff4bd100bde37d (patch) | |
tree | d0baf160cbee3195249d095f85e52d20c21acf02 /misc-utils/uuidparse.1.adoc | |
parent | Initial commit. (diff) | |
download | util-linux-cfe5e3905201349e9cf3f95d52ff4bd100bde37d.tar.xz util-linux-cfe5e3905201349e9cf3f95d52ff4bd100bde37d.zip |
Adding upstream version 2.39.3.upstream/2.39.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'misc-utils/uuidparse.1.adoc')
-rw-r--r-- | misc-utils/uuidparse.1.adoc | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/misc-utils/uuidparse.1.adoc b/misc-utils/uuidparse.1.adoc new file mode 100644 index 0000000..d517c19 --- /dev/null +++ b/misc-utils/uuidparse.1.adoc @@ -0,0 +1,80 @@ +//po4a: entry man manual +// Copyright (c) 2017 Sami Kerola +// The 3-Clause BSD License += uuidparse(1) +:doctype: manpage +:man manual: User Commands +:man source: util-linux {release-version} +:page-layout: base +:command: uuidparse + +== NAME + +uuidparse - a utility to parse unique identifiers + +== SYNOPSIS + +*uuidparse* [options] _uuid_ + +== DESCRIPTION + +This command will parse unique identifier inputs from either command line arguments or standard input. The inputs are white-space separated. + +== OUTPUT + +=== Variants + +[cols=",",] +|=== +|NCS |Network Computing System identifier. These were the original UUIDs. +|DCE |The Open Software Foundation's (OSF) Distributed Computing Environment UUIDs. +|Microsoft |Microsoft Windows platform globally unique identifier (GUID). +|other |Unknown variant. Usually invalid input data. +|=== + +=== Types + +[cols=",",] +|=== +|nil |Special type for zero in type file. +|time-based |The DCE time based. +|DCE |The DCE time and MAC Address. +|name-based |RFC 4122 md5sum hash. +|random |RFC 4122 random. +|sha1-based |RFC 4122 sha-1 hash. +|unknown |Unknown type. Usually invalid input data. +|=== + +== OPTIONS + +*-J*, *--json*:: +Use JSON output format. + +*-n*, *--noheadings*:: +Do not print a header line. + +*-o*, *--output*:: +Specify which output columns to print. Use *--help* to get a list of all supported columns. + +*-r*, *--raw*:: +Use the raw output format. + +include::man-common/help-version.adoc[] + +== AUTHORS + +mailto:kerolasa@iki.fi[Sami Kerola] + +== SEE ALSO + +*uuidgen*(1), +*libuuid*(3), +https://tools.ietf.org/html/rfc4122[RFC 4122] + +include::man-common/bugreports.adoc[] + +include::man-common/footer.adoc[] + +ifdef::translation[] +include::man-common/translation.adoc[] +endif::[] |