August 2006
Beginner
448 pages
9h 44m
English
To explore Unix and its capabilities, you’ll need to move around among the directories. You do so using the cd command, which takes you from the directory you’re currently in to one that you specify. Code Listing 1.4 illustrates how you use cd to change directories.
[jdoe@frazz jdoe]$ cd / [jdoe@frazz /]$ cd [jdoe@frazz jdoe]$ cd /home/jdoe/Project/ [jdoe@frazz Project]$ cd /etc [jdoe@frazz etc]$ cd /home/jdoe/ [jdoe@frazz etc]$ cd /home/jdoe/mail/ [jdoe@frazz mail]$ cd .. [jdoe@frazz jdoe]$ |
1. | cd Projects ... |
Read now
Unlock full access