This subchapter looks at cd, a UNIX (and Linux) command.
cd is used to Change Directory.
cd is a builtin command in bash and csh. There is also an external utility with the same name and functionality.
cd is used to change the directory you are working in. You type the command cd followed by a space and then the directory (folder) that you want to change to.
The chdir (change directory) command, the predecessor of cd, was described in the first UNIX book, UNIX Programmers Manual, by Ken Thompson and Dennis Ritchie, published November 3, 1971.
change directory example
For the purposes of an example, we need to first find a directory to change to. Type the command ls -F.
Your listing will be different than this one. Look for any name that has a slash ( / ) after it and use it as the directory_name in the following example. If you created the testdir in the quick tour subchapter, then use the second example listed here.
$ cd directory_name admins-power-mac-g5:directory_name admin$
If you created the testdir in the quick tour subchapter, then use the following example:
$ cd testdir admins-power-mac-g5:testdir admin$
Use the pwd command to confirm that you are now in your new directory.
Use the cd command without any additional arguments to return to your home directory from anywhere.
$ cd admins-power-mac-g5:~ admin$
Use the pwd command to confirm that you are now back in your home directory.
$ pwd /Users/admin admins-power-mac-g5:~ admin$
return to home directory
You can always return to your home directory from anywhere by typing cd command all by itself.
$ cd admins-power-mac-g5:~ admin$
If the HOME variable is set (which is normal), then you can use it to return to your home directory.
$ cd $HOME admins-power-mac-g5:~ admin$
return to previous directory
To return to the previous directory, type cd ~-
admins-power-mac-g5:~ admin$ cd testdir changing to the testdir directory
admins-power-mac-g5:testdir admin$ cd ../Library changing to the Library directory
admins-power-mac-g5:Library admin$ cd ~- changing back to the testdir directory, the immediately preceding directory
admins-power-mac-g5:testdir admin$
go one level up
Type cd ../ to go up one directory level. The following exampel starts in the testdir directory and goes up one level to the home directory.
admins-power-mac-g5:testdir admin$ cd ../ changing to the home directory, one level up from the testdir directory
admins-power-mac-g5:~ admin$
You can type a series of ../ to go up multiple directories. cd ../../ will go up two levels. cd ../../../ will go up three levels. And so on.
PC-DOS equivalent
cd .. is the UNIX equivalent of the MS-DOS or PC-DOS command CD... You can add the PC-DOS equivalent to your shell session with the alias command. To make the change permanent, add the following line to the .bashrc file in your home directory.
In June 2009, Ken Milberg named this command as one of the Top 50 universal UNIX commands at this web page Top 50 Universal INIX commands. Note that this web page requires agreeing to be spammed before you can read it.
free music player coding example
Coding example: I am making heavily documented and explained open source code for a method to play music for free almost any song, no subscription fees, no download costs, no advertisements, all completely legal. This is done by building a front-end to YouTube (which checks the copyright permissions for you).
Building a free downloadable text book on computer programming for university, college, community college, and high school classes in computer programming.
If you like the idea of this project, then please donate some money.
send donations to: Milo
PO Box 1361
Tustin, California 92781
Supporting the entire project:
If you have a business or organization that can support the entire cost of this project, please contact Pr Ntr Kmt (my church)
UNIX used as a generic term unless specifically used as a trademark (such as in the phrase UNIX certified). UNIX is a registered trademark in the United States and other countries, licensed exclusively through X/Open Company Ltd.
Names and logos of various OSs are trademarks of their respective owners.