diff --git a/pages/common/dirs.md b/pages/common/dirs.md new file mode 100644 index 0000000000..b2ca5a52b4 --- /dev/null +++ b/pages/common/dirs.md @@ -0,0 +1,20 @@ +# dirs + +> Displays or manipulates the directory stack. +> The directory stack is a list of recently visited directories that can be manipulated with the `pushd` and `popd` commands. + +- Display the directory stack with a space between each entry: + +`dirs` + +- Display the directory stack with one entry per line: + +`dirs -p` + +- Display only the nth entry in the directory stack, starting at 0: + +`dirs +{{N}}` + +- Clear the directory stack: + +`dirs -c`