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,24 @@
# 大于
> 将输出重定向到文件。
> 更多信息:<https://gnu.org/software/bash/manual/bash.html#Redirecting-Output>。
-`stdout` 重定向到文件:
`{{command}} > {{path/to/file}}`
- 附加到文件:
`{{command}} >> {{path/to/file}}`
-`stdout``stderr` 都重定向到文件:
`{{command}} &> {{path/to/file}}`
-`stderr` 重定向到 `/dev/null` 以保持终端输出干净:
`{{command}} 2> /dev/null`
- 清空文件内容或创建一个新的空文件:
`> {{path/to/file}}`