Linux cd命令:更改工作目录路径
Linux cd命令 功能描述
使用cd命令可以更改用户的工作目录路径。工作目录路径可以使用绝对路径名或相对路径名,绝对路径从/(根)开始,然后循序到所需的目录下,相对路径从当前目录开始。
Linux cd命令 语法
cd [选项] [目录]
命令中各选项的含义如表所示。
Linux cd命令 示例
更改用户工作目录路径为/etc
[root@rhel ~]# cd /etc
[root@rhel etc]#
改变用户工作目录路径位置至当前目录的父目录
[root@rhel etc]# cd ..
[root@rhel /]# pwd/
//可以看到工作目录路径已经更改为当前目录的父级目录“/”了
更改用户工作目录路径位置为用户主目录
[root@rhel /]# cd ~
[root@rhel ~]# pwd
/root
更改用户工作目录路径位置至用户zhangsan的主目录
[root@rhel ~]# cd ~zhangsan
[root@rhel zhangsan]# pwd
/home/zhangsan
//可以看到用户的工作目录路径已经更改为用户zhangsan的主目录/home/zhangsan
更改用户工作目录路径位置为/etc/init.d,如果是链接路径,则进入源物理路径
[root@rhel ~]# cd -P /etc/init.d
[root@rhel init.d]# pwd
/etc/rc.d/init.d
//当前工作目录路径为/etc/rc.d/init.d