cd命令

命令描述

cd命令是用来切换工作目录至dirname,其中的dirName表示法可为绝对路径或者相对路径。说白了 就是进入其它目录下,如果没有足够的权限的话 是 进入不了一些目录下的

命令语法

cd (参数) (目的目录)

案例一 进入根目录

[root@localhost etc]# cd /
[root@localhost /]# pwd
/
[root@localhost /]# 

案例二:进入当前用户目录

[root@localhost etc]# cd /
[root@localhost /]# pwd
/
[root@localhost /]# cd
[root@localhost ~]# pwd
/root
[root@localhost ~]# cd /
[root@localhost /]# pwd
/
[root@localhost /]# cd ~
[root@localhost ~]# pwd
/root

案例三:跳转到指定的目录

[root@localhost ~]# cd /etc/sysconfig/network-scripts/
[root@localhost network-scripts]# pwd
/etc/sysconfig/network-scripts
[root@localhost network-scripts]#