Fork me on GitHub

cd命令

摘要: cd(Change Directory 改变目录)命令用来切换工作目录至dirname。

1、作用

cd(Change Directory 改变目录)命令用来切换工作目录至dirname。 其中dirName表示法可为绝对路径或相对路径。若目录名称省略,则变换至使用者的home directory(也就是刚login时所在的目录)。另外,~也表示为home directory的意思,.则是表示目前所在的目录,..则表示目前目录位置的上一层目录。

2、用法

1
cd (选项) (参数)

3、选项

1
2
3
-p 如果要切换到的目标目录是一个符号连接,直接切换到符号连接指向的目标目录
-L 如果要切换的目标目录是一个符号的连接,直接切换到字符连接名代表的目录,而非符号连接所指向的目标目录。
- 当仅实用"-"一个选项时,当前工作目录将被切换到环境变量"OLDPWD"所表示的目录。每当你更改目录时,shell都会将上一个目录位置记录在环境变量OLDPWD中

4、实例

1、cd 进入用户主目录;

1
2
3
[root@cent6 init.d]# cd
[root@cent6 ~]# pwd
/root

2、cd ~ 进入用户主目录;

1
2
3
4
[root@cent6 ~]# cd ~
[root@cent6 ~]# pwd
/root
[root@cent6 ~]#

3、cd - 返回进入此目录之前所在的目录

1
2
3
4
5
6
7
[root@cent6 ~]# pwd
/root
[root@cent6 ~]# cd /home
[root@cent6 home]# cd -
/root
[root@cent6 ~]# pwd
/root

4、cd .. 返回上级目录

(若当前目录为“/“,则执行完后还在“/“;”..”为上级目录的意思);

1
2
3
4
5
[root@cent6 init.d]# pwd
/etc/init.d
[root@cent6 init.d]# cd ..
[root@cent6 etc]# pwd
/etc

5、cd ../.. 返回上两级目录;

1
2
3
4
5
[root@cent6 init.d]# pwd
/etc/init.d
[root@cent6 init.d]# cd ../..
[root@cent6 /]# pwd
/

6、cd !$ 把上个命令的参数作为cd参数使用

1
2
3
4
5
6
[root@cent6 /]# ls -ld /media/
drwxr-xr-x. 2 root root 4096 Sep 23 2011 /media/
[root@cent6 /]# cd !$
cd /media/
[root@cent6 media]# pwd
/media
1
select * from table
好记性不如烂笔头,生命不息,学习不止!

分享