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

View File

@@ -0,0 +1,16 @@
# dirname
> 计算文件或目录路径的父目录。
> 更多信息:<https://www.gnu.org/software/coreutils/dirname>。
- 计算给定路径的父目录:
`dirname {{path/to/file_or_directory}}`
- 计算多个路径的父目录:
`dirname {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
- 用 NUL 字符分隔输出而不是换行符(在与 `xargs` 结合使用时很有用):
`dirname --zero {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`