feed-image  Delivered by FeedBurner  ISSN 1836-5930





Visitors Online

We have 86 guests online

Poll

Which of following tutorials would you like to see on the Linuxconfig.org?
 
Partner Linux Sites
TuxMachines
DebianAdmin
Monsterb
LinuxBloggers
AdamsInfo
LinuxScrew
FreeSoftwareLinux
Jam's Ubuntu Blog
All For Linux

cd
Article Index
1. Name
2. Frequently used options
3. Examples
4. Relative Path
5. Absolute Path

1. Name

cd  - change directory

2. Frequently used options

-     change to previous directory   

3. Examples

In unix systems there two most frequently used commands, one is "ls" and the other is "cd". Command "cd" allows us to navigate through file system. To navigate to /etc/ directory simply enter:
$ cd /etc 
change directory with cd command
To navigate to previous directory we can enter:
$ cd -  
navigate to previous directory
By entering cd without any arguments navigate to home directory:
$ cd 
navigate to home directory

4. Relative Path

cd command and Relative Path

5. Absolute Path

cd command and Absolute Path