From fbcbb1eda000a5af527d84b213ad73a8a0871939 Mon Sep 17 00:00:00 2001 From: simchuck Date: Wed, 16 Jan 2019 10:43:15 -0800 Subject: [PATCH] Add 'related commands' section with info about pushd, popd, dirs (#32824) Would be useful to create a separate page for these commands and to add links from this page as appropriate. --- guide/english/bash/bash-cd/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guide/english/bash/bash-cd/index.md b/guide/english/bash/bash-cd/index.md index a1e26084ac..e183b77467 100644 --- a/guide/english/bash/bash-cd/index.md +++ b/guide/english/bash/bash-cd/index.md @@ -30,5 +30,8 @@ Change directory to `projects` folder: cd projects ``` +### Related Commands +The `cd` command is the daily workhorse for navigating through your path, but closely related are the `pushd`, `popd`, and `dirs` commands, which maintain a *stack* of your directory movements and allow you to more quickly navigate through this stack. + ### More Information: * [Wikipedia](https://en.wikipedia.org/wiki/Cd_(command))