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,28 @@
# 历史
> 命令行历史。
> 更多信息:<https://www.gnu.org/software/bash/manual/html_node/Bash-History-Builtins.html>。
- 以行号显示命令历史列表:
`history`
- 显示最后 20 个命令(在 Zsh 中,从第 20 个开始显示所有命令):
`history {{20}}`
- 以不同格式显示带时间戳的历史(仅在 Zsh 中可用):
`history -{{d|f|i|E}}`
- [c]lear 当前 Bash shell 的命令历史列表:
`history -c`
- 用当前 Bash shell 的历史覆盖历史文件(通常与 `history -c` 结合使用以清除历史):
`history -w`
- [d]elete 指定偏移量的历史条目:
`history -d {{offset}}`