Linux常用命令:cd命令
Linuxcd命令可以說是Linux中最基本的命令語句,其他的命令語句要進(jìn)行操作,都是建立在使用cd命令上的。
所以,學(xué)習(xí)Linux常用命令linux常用命令,首先就要學(xué)好cd命令的使用方法技巧。
1.命令格式:
cd[目錄名]
2.命令功能:
切換當(dāng)前目錄至dirName
3.常用范例
3.1例一:進(jìn)入系統(tǒng)根目錄
命令:
cd/
輸出:
[root@localhost~]#cd/
說明:進(jìn)入系統(tǒng)根目錄,上面命令執(zhí)行完后拿ls命令看一下linux常用命令,當(dāng)前目錄已經(jīng)到系統(tǒng)根目錄了
命令:
cd..或者cd..//
輸出:
1[root@localhostsoft]#pwd
2/opt/soft
3[root@localhostsoft]#cd..
4[root@localhostopt]#cd..//
5[root@localhost/]#pwd
6/
說明:
進(jìn)入系統(tǒng)根目錄可以使用“cd..”一直退,就可以到達(dá)根目錄
命令:
cd../..//
輸出:
1[root@localhostsoft]#pwd
2/opt/soft
3[root@localhostsoft]#cd../..//
4[root@localhost/]#pwd
5/
6[root@localhost/]#
說明:使用cd命令實(shí)現(xiàn)進(jìn)入當(dāng)前目錄的父目錄的父目錄。
例2:使用cd命令進(jìn)入當(dāng)前用戶主目錄
“當(dāng)前用戶主目錄”和“系統(tǒng)根目錄”是兩個(gè)不同的概念。進(jìn)入當(dāng)前用戶主目錄有兩個(gè)方法。
命令1:
cd
輸出:
1[root@localhostsoft]#pwd
2/opt/soft
3[root@localhostsoft]#cd
4[root@localhost~]#pwd
5/root
命令2:
cd~
輸出:
1[root@localhost~]#cd/opt/soft/
2[root@localhostsoft]#pwd
3/opt/soft
4[root@localhostsoft]#cd~
5[root@localhost~]#pwd
6/root
例3:跳轉(zhuǎn)到指定目錄
命令:
cd/opt/soft
輸出:
1[root@localhost~]#cd/opt/soft
2[root@localhostsoft]#pwd
3/opt/soft
4[root@localhostsoft]#cdjdk1.6.0_16/
5[root@localhostjdk1.6.0_16]#pwd
6/opt/soft/jdk1.6.0_16
7[root@localhostjdk1.6.0_16]#
說明:
跳轉(zhuǎn)到指定目錄,從根目錄開始,目錄名稱前加/,當(dāng)前目錄內(nèi)的子目錄直接寫名稱即可
例四:返回進(jìn)入此目錄之前所在的目錄
命令:
cd-
輸出:
1[root@localhostsoft]#pwd
2/opt/soft
3[root@localhostsoft]#cd-
4/root
5[root@localhost~]#pwd
6/root
7[root@localhost~]#cd-
8/opt/soft
9[root@localhostsoft]#
例五:把上個(gè)命令的參數(shù)作為cd參數(shù)使用。
命令:
cd!$
輸出:
1[root@localhostsoft]#cd!$
2cd-
3/root
4[root@localhost~]#cd!$
5cd-
6/opt/soft
7[root@localhostsoft]#