1.概述

cd常用于切换目录,改变目录(change directory)

2.切换目录

cd [Directory] , [Directory] 可以 为任意存在的目录。

1
2
3
4
5
6
7
8
[root@smart Desktop]# pwd
/root/Desktop
[root@smart Desktop]# cd /
[root@smart /]# pwd
/
[root@smart /]# cd /home/
[root@smart home]# pwd
/home

3.切换到上一次目录

cd -

1
2
3
4
5
6
[root@smart /]# cd /opt/rh/
[root@smart rh]# pwd
/opt/rh
[root@smart rh]# cd /home
[root@smart home]# cd -
/opt/rh

4.返回上级目录

cd .. 切换到上级目录

cd ../.. 切换到上级目录的上级目录

1
2
3
4
5
[root@smart rh]# pwd
/opt/rh
[root@smart rh]# cd ..
[root@smart opt]# pwd
/opt

5.切换到子目录

cd [子目录名]

1
2
3
4
5
6
7
[root@smart home]# pwd
/home
[root@smart home]# ls
smart software workspace
[root@smart home]# cd smart/
[root@smart smart]# pwd
/home/smart

6.切换到当前用户主目录

cd 默认情况下,cd后不接任何路径,将会切换到用户主目录

cd ~

1
2
3
4
5
6
7
8
[root@smart smart]# cd /
[root@smart /]# cd
[root@smart ~]# pwd
/root
[root@smart ~]# cd /
[root@smart /]# cd ~
[root@smart ~]# pwd
/root