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 @@
# 小于
> 将数据重定向到 `stdin`。
> 更多信息:<https://gnu.org/software/bash/manual/bash.html#Redirecting-Input>。
- 将文件重定向到 `stdin`(效果与 `cat file.txt |` 相同):
`{{command}} < {{path/to/file.txt}}`
- 创建一个 here 文档并将其传递到 `stdin`(需要多行命令):
`{{command}} << {{EOF}} <Enter> {{multiline_data}} <Enter> {{EOF}}`
- 创建一个 here 字符串并将其传递到 `stdin`(效果与 `echo string |` 相同):
`{{command}} <<< {{string}}`