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

28
pages.zh/common/rev.md Normal file
View File

@@ -0,0 +1,28 @@
# rev
> 反转一行文本或文件。
> 更多信息:<https://manned.org/rev>。
- 反转输入到终端的文本:
`rev`
- 反转文本字符串 "hello"
`echo "hello" | rev`
- 反转整个文件并打印到 `stdout`
`rev {{path/to/file}}`
- 使用 '\0' 作为行分隔符(零终止):
`rev -0 {{path/to/file}}`
- 显示帮助信息:
`rev -h`
- 显示版本信息:
`rev -V`