歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux基礎知識 >> 學習linux命令之:cd命令

學習linux命令之:cd命令

日期:2017/3/2 17:15:20   编辑:Linux基礎知識

命令解釋

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