Bash Directory Manipulation Built-in Commands
Jump to navigation
Jump to search
Internal
Overview
pushd
and popd
are bash built commands.
Concepts
Directory Stack
DIRSTACK Environment Variable
DIRSTACK
is an array variable that contains the current contents of the directory stack. Directories appear in the stack in the order they are displayed by the dirs
builtin. Assigning to members of this array variable may be used to modify directories already in the stack, but the pushd
and popd
builtins must be used to add and remove directories. Assignment to this variable will not change the current directory. If DIRSTACK
is unset, it loses its special properties, even if it is subsequently reset.