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

20
pages.zh/osx/hdiutil.md Normal file
View File

@@ -0,0 +1,20 @@
# hdiutil
> 用于创建和管理磁盘映像的工具。
> 更多信息:<https://keith.github.io/xcode-man-pages/hdiutil.1.html>。
- 挂载映像:
`hdiutil attach {{path/to/image_file}}`
- 卸载映像:
`hdiutil detach /Volumes/{{volume_file}}`
- 列出已挂载的映像:
`hdiutil info`
- 从目录的内容创建 ISO 映像:
`hdiutil makehybrid -o {{path/to/output_file}} {{path/to/directory}}`