diff --git a/docs/commands/cd.md b/docs/commands/cd.md index 535f1d16eb..2e5d933f47 100644 --- a/docs/commands/cd.md +++ b/docs/commands/cd.md @@ -23,3 +23,11 @@ If you didn't already know, the `cd` command is very simple. It stands for 'chan /usr> cd /home/username> ``` + +Using `cd -` will take you to the previous directory: + +```shell +/home/username/Desktop/super/duper/crazy/nested/folders> cd +/home/username> cd - +/home/username/Desktop/super/duper/crazy/nested/folders> cd +```