From 25aedd28b4aeaec02755720e13d70e8f311de9fb Mon Sep 17 00:00:00 2001 From: Joe Date: Mon, 29 Oct 2018 19:13:18 -0400 Subject: [PATCH] Update index.md (#24603) added "- Typing 'pwd' will show you which directory you are currently working in." --- guide/english/bash/bash-cd/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/english/bash/bash-cd/index.md b/guide/english/bash/bash-cd/index.md index aadec79767..8eadecf0ca 100644 --- a/guide/english/bash/bash-cd/index.md +++ b/guide/english/bash/bash-cd/index.md @@ -15,5 +15,7 @@ There are a few really helpful arguments to aid this: - `-` can be used to move to the previous directory. For example, you are in `/A`, then cd to `/B`, use `cd -` and you are back to `/A` - `~[number]` will cd to that entry from the output of `dirs` directories can be pushed on poped to the 'dirs' stack using `pushd` and `popd` respectively. - Typing only `cd` will move to the home directory works same as `cd ~` +- Typing 'pwd' will show you which directory you are currently working in. + ### More Information: * [Wikipedia](https://en.wikipedia.org/wiki/Cd_(command))