CDPATH is an environment variable which tells the cd
command where to look for the specified folder. By including the parent folders of commonly used locations you can access folders more easily - and without typing an entire path.
Open up your shell profile file .bashrc
(Linux) or .bash_profile
(Mac).
Somewhere near the bottom of the file add a line to set the CDPATH environment variable:
CDPATH=:..:~:~/data:~/projects
In order left to right this tells cd
to look in:
- The current directory (blank; before the first
:
) - The parent directory
..
- Your home directory
~
- Your projects directory in your home
~/projects
You can add as many folders to search as you like and these will be checked in order from left to right.
Restart your shell (close and reopen or enter restart
) and then try to cd
to folders in your home directory from anywhere on your filesystem with cd <foldername>
and no path.
To support developers in [[ countryRegion ]] I give a [[ localizedDiscount[couponCode] ]]% discount on all books and courses.
[[ activeDiscount.description ]] I'm giving a [[ activeDiscount.discount ]]% discount on all books and courses.