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

36
pages.zh/common/less.md Normal file
View File

@@ -0,0 +1,36 @@
# less
> 以交互方式打开文件进行阅读,支持滚动和搜索。
> 更多信息:<https://greenwoodsoftware.com/less/>。
- 打开文件:
`less {{source_file}}`
- 向下/向上翻页:
`<Space>向下b向上`
- 跳转到文件的末尾/开头:
`G末尾g开头`
- 向前搜索字符串(按 `n`/`N` 转到下一个/上一个匹配项):
`/{{something}}`
- 向后搜索字符串(按 `n`/`N` 转到下一个/上一个匹配项):
`?{{something}}`
- 跟随当前打开文件的输出:
`F`
- 在编辑器中打开当前文件:
`v`
- 退出:
`q`