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

24
pages.zh/osx/mktemp.md Normal file
View File

@@ -0,0 +1,24 @@
# mktemp
> 创建一个临时文件或目录。
> 更多信息:<https://keith.github.io/xcode-man-pages/mktemp.1.html>。
- 创建一个空的临时文件并打印其绝对路径:
`mktemp`
- 使用自定义目录(默认为 `getconf DARWIN_USER_TEMP_DIR` 的输出,或 `/tmp`
`mktemp --tmpdir={{/path/to/tempdir}}`
- 使用自定义路径模板(`X` 将被随机字母数字字符替换):
`mktemp {{/tmp/example.XXXXXXXX}}`
- 使用自定义文件名前缀:
`mktemp -t {{example}}`
- 创建一个空的临时目录并打印其绝对路径:
`mktemp --directory`