Arrays
Bash Features
Printing a Prompt
The directory stack is a list of recently-visited directories. The
pushd
builtin adds directories to the stack as it changes
the current directory, and the popd
builtin removes specified
directories from the stack and changes the current directory to
the directory removed. The dirs
builtin displays the contents
of the directory stack.
The contents of the directory stack are also visible
as the value of the DIRSTACK
shell variable.
dirs
|
Display the list of currently remembered directories. Directories
are added to the list with the
| ||||||||||||
popd
|
Remove the top entry from the directory stack, and
| ||||||||||||
pushd
|
Save the current directory on the top of the directory stack
and then
|