msgid "" msgstr "" "Language: eo\n" "Content-Type: text/plain; charset=UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. type: Title = #: doc/uuid.en.0.adoc:1 #, no-wrap msgid "uuid(0)" msgstr "" #. type: Title == #: doc/uuid.en.0.adoc:5 doc/uuid.en.1.adoc:5 doc/uuid.en.3.adoc:3 #: doc/uuid.en.7CHANGELOG.adoc:3 doc/uuid.en.7README.adoc:3 #: doc/uuid.en.7TODOs.adoc:3 doc/uuid.en.7recipes.adoc:3 #: doc/uuid.en.7tutorial.adoc:3 doc/uuid.en.7why.adoc:3 #, no-wrap msgid "NAME" msgstr "" #. type: Plain text #: doc/uuid.en.0.adoc:8 msgid "uuid - generate or parse UUID values." msgstr "" #. type: Title == #: doc/uuid.en.0.adoc:11 doc/uuid.en.1.adoc:60 doc/uuid.en.7CHANGELOG.adoc:7 #, no-wrap msgid "DESCRIPTION" msgstr "" #. type: Plain text #: doc/uuid.en.0.adoc:13 msgid "" "*uuid* generates UUID of version 4 or version 7, or validate a given UUID." msgstr "" #. type: Title = #: doc/uuid.en.1.adoc:1 #, no-wrap msgid "uuid(1)" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:8 msgid "uuid - generate a UUID version 4 or 7, or validate a UUID string." msgstr "" #. type: Title == #: doc/uuid.en.1.adoc:11 #, no-wrap msgid "SYNOPSYS" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:15 msgid "*uuid* [-v (4|7)] *uuid* [_STRING_]" msgstr "" #. type: Title == #: doc/uuid.en.1.adoc:18 #, no-wrap msgid "EXAMPLES" msgstr "" #. type: Title === #: doc/uuid.en.1.adoc:21 #, no-wrap msgid "Print a (version 4) UUID on the terminal" msgstr "" #. type: delimited block . #: doc/uuid.en.1.adoc:27 #, no-wrap msgid "" "$ uuid\n" "d3891787-c952-af17-d697-0df3b85981e1\n" msgstr "" #. type: Title === #: doc/uuid.en.1.adoc:30 #, no-wrap msgid "Print a verson 7 UUID on the terminal" msgstr "" #. type: delimited block . #: doc/uuid.en.1.adoc:36 #, no-wrap msgid "" "$ uuid -v 7\n" "d3891787-c952-af17-d697-0df3b85981e1\n" msgstr "" #. type: Title === #: doc/uuid.en.1.adoc:39 #, no-wrap msgid "Create a new UUID as part of a path" msgstr "" #. type: delimited block . #: doc/uuid.en.1.adoc:44 #, no-wrap msgid "dir=\"$PWD\"/\"$(uuid)\"/data\n" msgstr "" #. type: Title === #: doc/uuid.en.1.adoc:47 #, no-wrap msgid "Validate a given UUID" msgstr "" #. type: delimited block . #: doc/uuid.en.1.adoc:56 #, no-wrap msgid "" "ID=\"$(basename -- \"$directory\")\"\n" "if ! uuid \"$ID\"; then\n" "\techo \"Bad UUID in directory: $ID\" >&2\n" "\texit 1\n" "fi\n" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:65 msgid "" "The *uuid* utility generates a new UUID when no _STRING_ is given and write " "it to _stdout_. If a _STRING_ is given, *uuid* validates it and exits, and " "produces no output." msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:69 msgid "" "The *-v* option allows for choosing which type of UUID to be emitted, either " "version 4 (\"the random one\") or version 7 (\"the sortable one\"). When " "omitted, version 4 is chosen as default." msgstr "" #. type: Title == #: doc/uuid.en.1.adoc:72 #, no-wrap msgid "OPTIONS" msgstr "" #. type: Labeled list #: doc/uuid.en.1.adoc:74 #, no-wrap msgid "*-v NUMBER*" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:76 msgid "" "Choose the UUID version *NUMBER* to be generated. Supported values are 4 " "(the default) and 7." msgstr "" #. type: Title == #: doc/uuid.en.1.adoc:79 #, no-wrap msgid "OPERANDS" msgstr "" #. type: Labeled list #: doc/uuid.en.1.adoc:81 #, no-wrap msgid "_STRING_" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:82 msgid "If it is" msgstr "" #. type: Labeled list #: doc/uuid.en.1.adoc:83 #, no-wrap msgid "*not given*" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:85 msgid "" "generate a brand new random UUIDv4, print it to _stdout_ and exit normally;" msgstr "" #. type: Labeled list #: doc/uuid.en.1.adoc:85 #, no-wrap msgid "*given*" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:86 msgid "test if it is a valid UUIDv4 and exit normally if so." msgstr "" #. type: Title == #: doc/uuid.en.1.adoc:89 #, no-wrap msgid "IO" msgstr "" #. type: Title === #: doc/uuid.en.1.adoc:92 #, no-wrap msgid "STDIN" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:95 msgid "Not used." msgstr "" #. type: Title === #: doc/uuid.en.1.adoc:97 #, no-wrap msgid "STDOUT" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:101 msgid "" "The UUIDv4 format is made of byte blocks encoded as hexadecimals, using a " "('`-`') as the block separator:" msgstr "" #. type: delimited block . #: doc/uuid.en.1.adoc:105 #, no-wrap msgid "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\n" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:108 msgid "An example output is:" msgstr "" #. type: delimited block . #: doc/uuid.en.1.adoc:112 #, no-wrap msgid "cb46d0c0-b2aa-4a6c-a119-8deace2544a2\n" msgstr "" #. type: Title === #: doc/uuid.en.1.adoc:115 #, no-wrap msgid "STDERR" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:118 msgid "" "Errors on UUID validation are sent to the standard error. For instance:" msgstr "" #. type: delimited block . #: doc/uuid.en.1.adoc:123 #, no-wrap msgid "" "$ uuid not-a-uuid-123 1>/dev/null\n" "uuid: str isn't of the correct length\n" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:126 msgid "When valid, validation emits nothing and exits with 0." msgstr "" #. type: Title === #: doc/uuid.en.1.adoc:128 #, no-wrap msgid "INPUT FILES" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:131 doc/uuid.en.1.adoc:136 msgid "None." msgstr "" #. type: Title === #: doc/uuid.en.1.adoc:133 #, no-wrap msgid "OUTPUT FILES" msgstr "" #. type: Title == #: doc/uuid.en.1.adoc:139 #, no-wrap msgid "EXIT STATUS" msgstr "" #. type: Labeled list #: doc/uuid.en.1.adoc:141 #, no-wrap msgid "0" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:142 msgid "Generating or validating a UUID was successfull." msgstr "" #. type: Labeled list #: doc/uuid.en.1.adoc:142 #, no-wrap msgid "3" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:143 msgid "UUID validation failed." msgstr "" #. type: Title == #: doc/uuid.en.1.adoc:146 #, no-wrap msgid "CONFORMING TO" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:149 msgid "The versions 4 and 7 of the UUID defined in *RFC 9562*." msgstr "" #. type: Title == #: doc/uuid.en.1.adoc:152 #, no-wrap msgid "SEE ALSO" msgstr "" #. type: Title == #: doc/uuid.en.1.adoc:156 #, no-wrap msgid "AUTHORS" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:159 msgid "mailto:eu@euandre.org[EuAndreh] and contributors." msgstr "" #. type: Title == #: doc/uuid.en.1.adoc:162 #, no-wrap msgid "BUGS" msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:166 msgid "" "Report bugs to the mailto:~euandreh/public-inbox@lists.sr.ht[mailing list]. " "Use the subject \"[uuid] BUG or TASK: \"." msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:167 msgid "Browse bugs https://euandre.org/git/uuid/TODOs.html[online]." msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:168 msgid "https://euandre.org/git/uuid/[Homepage]." msgstr "" #. type: Plain text #: doc/uuid.en.1.adoc:168 msgid "" "https://lists.sr.ht/~euandreh/public-inbox?search=%5Buuid%5D[Comments and " "discussions]." msgstr "" #. type: Title = #: doc/uuid.en.3.adoc:1 #, no-wrap msgid "uuid(3)" msgstr "" #. type: Plain text #: doc/uuid.en.3.adoc:5 doc/uuid.en.7CHANGELOG.adoc:6 #: doc/uuid.en.7README.adoc:5 doc/uuid.en.7TODOs.adoc:6 #: doc/uuid.en.7recipes.adoc:5 doc/uuid.en.7tutorial.adoc:5 #: doc/uuid.en.7why.adoc:5 msgid "uuid - ." msgstr "" #. type: Title = #: doc/uuid.en.7CHANGELOG.adoc:1 #, no-wrap msgid "uuid(7CHANGELOG)" msgstr "" #. Entry template: #. == Unreleased #. === Added #. === Changed #. === Deprecated #. === Removed #. === Fixed #. === Security #. type: Plain text #: doc/uuid.en.7CHANGELOG.adoc:21 msgid "Changelog for https://euandre.org/s/uuid/en/[uuid]." msgstr "" #. type: Title == #: doc/uuid.en.7CHANGELOG.adoc:22 #, no-wrap msgid "Unreleased" msgstr "" #. type: Title = #: doc/uuid.en.7README.adoc:1 #, no-wrap msgid "uuid(7README)" msgstr "" #. type: Title = #: doc/uuid.en.7TODOs.adoc:1 #, no-wrap msgid "uuid(7TODOs)" msgstr "" #. type: Title == #: doc/uuid.en.7TODOs.adoc:9 #, no-wrap msgid "Tasks" msgstr "" #. type: Title == #: doc/uuid.en.7TODOs.adoc:11 #, no-wrap msgid "Bugs" msgstr "" #. type: Title == #: doc/uuid.en.7TODOs.adoc:13 #, no-wrap msgid "Improvements" msgstr "" #. type: Title == #: doc/uuid.en.7TODOs.adoc:15 #, no-wrap msgid "Questions" msgstr "" #. type: Title == #: doc/uuid.en.7TODOs.adoc:17 #, no-wrap msgid "Decisions" msgstr "" #. type: Title == #: doc/uuid.en.7TODOs.adoc:19 #, no-wrap msgid "Ideas" msgstr "" #. type: Title == #: doc/uuid.en.7TODOs.adoc:21 #, no-wrap msgid "Proposals" msgstr "" #. type: Title == #: doc/uuid.en.7TODOs.adoc:23 #, no-wrap msgid "Resources" msgstr "" #. type: Title == #: doc/uuid.en.7TODOs.adoc:25 #, no-wrap msgid "Scratch" msgstr "" #. type: Title = #: doc/uuid.en.7recipes.adoc:1 #, no-wrap msgid "uuid(7recipes)" msgstr "" #. type: Title = #: doc/uuid.en.7tutorial.adoc:1 #, no-wrap msgid "uuid(7tutorial)" msgstr "" #. type: Title = #: doc/uuid.en.7why.adoc:1 #, no-wrap msgid "uuid(7why)" msgstr ""