* pages/*: add standard translation and links Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * fix1: false positives; standardize Bengali, Hindi, Nepali periods * fix: periods in recently added Bengali pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * fix: false positives in modified files Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: update to native period in Bengali l10n Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
18 lines
438 B
Markdown
18 lines
438 B
Markdown
# pushd
|
|
|
|
> 将目录放在堆栈上,以便以后访问。
|
|
> 另请参阅 `popd` 命令说明,以切换回原始目录。
|
|
> 更多信息:<https://www.gnu.org/software/bash/manual/html_node/Directory-Stack-Builtins.html>.
|
|
|
|
- 切换到目录并将其添加到堆栈上:
|
|
|
|
`pushd {{directory}}`
|
|
|
|
- 切换堆栈上的第一个和第二个目录:
|
|
|
|
`pushd`
|
|
|
|
- 通过使第 5 个元素成为堆栈的顶部来旋转堆栈:
|
|
|
|
`pushd +4`
|