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,16 +1,21 @@
# popd
> 通过 pushd shell 内置程序删除目录堆栈中的目录。
> 更多信息:<https://www.gnu.org/software/bash/manual/html_node/Directory-Stack-Builtins.html>.
> 从目录栈中移除通过 pushd shell 内置命令放置的目录。
> 另请参见 `pushd` 以将目录放入栈中,以及 `dirs` 以显示目录栈的内容。
> 更多信息:<https://www.gnu.org/software/bash/manual/html_node/Directory-Stack-Builtins.html>。
-栈中除顶部目录,并用 `cd` 跳转到该目录:
- 从栈中除顶部目录并切换到该目录:
`popd`
- 除第 n 个目录(从零开始,以用 `dirs` 打印的列表左侧开始
- 除第 N 个目录(从零开始,向左查看 `dirs` 打印的列表):
`popd +N`
- 除第 n 个目录(从零开始,以用 `dirs` 打印的列表右侧开始
- 除第 N 个目录(从零开始,向右查看 `dirs` 打印的列表):
`popd -N`
- 移除第 1 个目录(从零开始,向左查看 `dirs` 打印的列表):
`popd -n`