Add documentation for cd -

This commit is contained in:
Odin Dutton 2019-10-08 10:17:51 +11:00
parent 77c34acb03
commit 4d70255696

View File

@ -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
```