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

16
pages.zh/linux/rsh.md Normal file
View File

@@ -0,0 +1,16 @@
# rsh
> 在远程主机上执行命令。
> 更多信息:<https://www.gnu.org/software/inetutils/manual/html_node/rsh-invocation.html>。
- 在远程主机上执行命令:
`rsh {{remote_host}} {{ls -l}}`
- 以特定用户名在远程主机上执行命令:
`rsh {{remote_host}} -l {{username}} {{ls -l}}`
- 在远程主机上执行命令时将 `stdin` 重定向到 `/dev/null`
`rsh {{remote_host}} --no-err {{ls -l}}`