add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

33
pages.zh/linux/uuid.md Normal file
View File

@@ -0,0 +1,33 @@
# uuid
> 生成和解码全局唯一标识符UUID
> 另见 `uuidgen`。
> 更多信息:<https://manned.org/uuid>。
- 生成一个 UUIDv1基于时间和系统的硬件地址如果存在
`uuid`
- 生成一个 UUIDv4基于随机数据
`uuid -v {{4}}`
- 一次生成多个 UUIDv4 标识符:
`uuid -v {{4}} -n {{number_of_uuids}}`
- 生成一个 UUIDv4 并指定输出格式:
`uuid -v {{4}} -F {{BIN|STR|SIV}}`
- 生成一个 UUIDv4 并将输出写入文件:
`uuid -v {{4}} -o {{path/to/file}}`
- 生成一个 UUIDv5基于提供的对象名称并指定命名空间前缀
`uuid -v {{5}} ns:{{DNS|URL|OID|X500}} {{object_name}}`
- 解码给定的 UUID
`uuid -d {{uuid}}`