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

21
pages.zh/common/type.md Normal file
View File

@@ -0,0 +1,21 @@
# type
> 显示 shell 将执行的命令类型。
> 注意:所有示例均不符合 POSIX 标准。
> 更多信息请访问:<https://manned.org/type>。
- 显示命令的类型:
`type {{command}}`
- 显示包含指定可执行文件的所有位置(仅在 Bash/fish/Zsh shell 中有效):
`type -a {{command}}`
- 显示将要执行的磁盘文件的名称(仅在 Bash/fish/Zsh shell 中有效):
`type -p {{command}}`
- 显示特定命令的类型,别名/关键字/函数/内置命令/文件(仅在 Bash/fish shell 中有效):
`type -t {{command}}`