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

@@ -1,17 +1,21 @@
# pushd
> 将目录放堆栈,以便后访问。
> 请参阅 `popd` 命令说明,以切换回原始目录。
> 更多信息:<https://www.gnu.org/software/bash/manual/html_node/Directory-Stack-Builtins.html>.
> 一个目录放堆栈,以便后访问。
> `popd` 以切换回原始目录,以及 `dirs` 以显示目录堆栈内容
> 更多信息:<https://www.gnu.org/software/bash/manual/html_node/Directory-Stack-Builtins.html>
- 切换到目录并将其添加到堆栈
- 切换到目录并将其压入堆栈:
`pushd {{directory}}`
`pushd {{path/to/directory}}`
- 换堆栈的第一个和第二个目录:
- 换堆栈的第一个和第二个目录:
`pushd`
- 通过使第 5 个元素为堆栈顶部来旋转堆栈:
- 通过将第5个元素为堆栈顶部来旋转堆栈:
`pushd +4`
- 将堆栈向左旋转4次当前目录保持在顶部通过替换第5个元素
`pushd -n +4`