mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 22:41:36 +00:00
27 lines
635 B
Plaintext
27 lines
635 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# dirs
|
|
|
|
> Display or manipulate the directory stack.
|
|
> The directory stack is a list of recently visited directories that can be manipulated with the `pushd` and `popd` commands.
|
|
> More information: <https://www.gnu.org/software/bash/manual/bash.html#Directory-Stack-Builtins>.
|
|
|
|
- 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`
|