1. 功能说明
cd是“change directory”中每个氮气的首字母缩写功能是重当前工作目录切换到指定的工作目录;cd是内建命令。
2. 语法格式
cd [option] [dir]
cd 选项 目录
3.使用范例
范例1: 切换到/home目录
[root@localhost sysconfig]# pwd
/etc/sysconfig #当前目录路径
[root@localhost sysconfig]# cd /home/ #切换到home目录
[root@localhost home]# pwd
/home
范例2: 切换到上一级目录
root@localhost home]# cd ..
[root@localhost /]# pwd
/
范例3: 切换到上一次目录
[root@localhost home]# cd -
/etc/sysconfig
范例4: 回到家目录
[root@localhost sysconfig]# cd ~
[root@localhost ~]# pwd
/root