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

29
pages.zh/common/tcsh.md Normal file
View File

@@ -0,0 +1,29 @@
# tcsh
> C shell具有文件名补全和命令行编辑功能。
> 另见:`csh`。
> 更多信息:<https://manned.org/tcsh>。
- 启动一个交互式 shell 会话:
`tcsh`
- 启动一个不加载启动配置的交互式 shell 会话:
`tcsh -f`
- 执行特定的 [c]ommands
`tcsh -c "{{echo 'tcsh 被执行'}}"`
- 执行特定的脚本:
`tcsh {{path/to/script.tcsh}}`
- 检查特定脚本的语法错误:
`tcsh -n {{path/to/script.tcsh}}`
-`stdin` 执行特定命令:
`{{echo "echo 'tcsh 被执行'"}} | tcsh`