歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux基礎知識

學習linux命令之:cd命令

命令解釋

cd命令就是切換目錄層次的命令

命令格式

 cd  目錄

命令常用用法

cd /   切換到根目錄

cd .    當前目錄

cd -    切換到上次目錄 

cd ..    切換到上一級目錄

cd ~    切換到家目錄

例:切換到家目錄 

[root@moban data]# cd ~
[root@moban ~]# pwd
/root

例:切換到上一級目錄

[root@moban ~]# cd ..
[root@moban /]# pwd
/

例:切換到根下的data目錄

[root@moban /]# cd /data
[root@moban data]# pwd
/data

例:切換到上次進入的目錄

[root@moban data]# cd -
/
[root@moban /]#

 

引出一個命令pwd 查看當前自己在什麼目錄。

Copyright © Linux教程網 All Rights Reserved