Forrest logo
back to context overview

uuid

List of commands for uuid:

  • uuid:tldr:05b49 uuid: Generate a UUIDv4 and write the output to a file.
    $ uuid -v ${4} -o ${filename}
    try on your machine
    explain this command
  • uuid:tldr:a6766 uuid: Generate a UUIDv4 (based on random data).
    $ uuid -v ${4}
    try on your machine
    explain this command
  • uuid:tldr:aa056 uuid: Generate multiple UUIDv4 identifiers at once.
    $ uuid -v ${4} -n ${number_of_uuids}
    try on your machine
    explain this command
  • uuid:tldr:ae740 uuid: Decode a given UUID.
    $ uuid -d ${uuid}
    try on your machine
    explain this command
  • uuid:tldr:b0984 uuid: Generate a UUIDv4 and specify the output format.
    $ uuid -v ${4} -F ${select}
    try on your machine
    explain this command
  • uuid:tldr:d0662 uuid: Generate a UUIDv5 (based on the supplied object name) with a specified namespace prefix.
    $ uuid -v ${5} ns:${select} ${object_name}
    try on your machine
    explain this command
  • uuid:tldr:ef7c8 uuid: Generate a UUIDv1 (based on time and system's hardware address, if present).
    $ uuid
    try on your machine
    explain this command
back to context overview