cd命令在linux中,用於切換目錄,是linux中最經常使用的命令之一。
linux
命令功能bash
切換當前目錄至指定目錄ide
命令格式spa
cd [diretory]
orm
經常使用範例ip
例一:進入到/目錄ci
命令:it
cd /
輸出:class
[root@oldboylinux ~]# cd / [root@oldboylinux /]# pwd / [root@oldboylinux /]#
用pwd命令能夠查看當前所在目錄的絕對路徑。network
例二:返回當前目錄的上一層目錄,使用../..的用法能夠返回上上層目錄,../../..,以此類推。
命令:
cd ..
輸出:
[root@oldboylinux network-scripts]# pwd /etc/sysconfig/network-scripts [root@oldboylinux network-scripts]# cd .. [root@oldboylinux sysconfig]# pwd /etc/sysconfig [root@oldboylinux sysconfig]# cd .. [root@oldboylinux etc]# pwd /etc [root@oldboylinux ~]# cd /etc/sysconfig/network-scripts/ [root@oldboylinux network-scripts]# pwd /etc/sysconfig/network-scripts [root@oldboylinux network-scripts]# cd ../.. [root@oldboylinux etc]# pwd /etc [root@oldboylinux etc]#
例三:進入本身的家目錄
命令:
cd #不接任何參數默認返回用戶家目錄 cd ~ #"~"表示用戶的家目錄
輸出:
[root@oldboylinux network-scripts]# cd [root@oldboylinux ~]# pwd /root [root@oldboylinux ~]# cd /etc/sysconfig/network-scripts/ [root@oldboylinux network-scripts]# cd ~ [root@oldboylinux ~]# pwd /root [root@oldboylinux ~]#
例四:返回進入此目錄以前的目錄
命令:
cd -
輸出:
[root@oldboylinux network-scripts]# cd ~ [root@oldboylinux ~]# pwd /root [root@oldboylinux ~]# cd - /etc/sysconfig/network-scripts [root@oldboylinux network-scripts]# pwd /etc/sysconfig/network-scripts [root@oldboylinux network-scripts]# cd - /root [root@oldboylinux ~]#
例五:把上個命令的參數做爲cd的參數使用
命令:
cd !$
輸出
[root@oldboylinux ~]# cd /etc/sysconfig/network-scripts/ [root@oldboylinux network-scripts]# cd - /root [root@oldboylinux ~]# cd - /etc/sysconfig/network-scripts [root@oldboylinux network-scripts]# cd !$ cd - /root [root@oldboylinux ~]# cd !$ cd - /etc/sysconfig/network-scripts [root@oldboylinux network-scripts]#