cd 切換目錄 1.切換到指定目錄下 2.切換到某個用戶的主文件夾 3.切換到自己的主文件夾 4.返回上級目錄 5.回到剛纔在的目錄 pwd 顯示當前路徑 mkdir 新建目錄 1.簡單創建一個目錄 mkdir 目錄名 2.創建目錄時同時賦予目錄許可權 3.創建多層目錄 4.rmdir 刪除文件夾 只 ...
cd 切換目錄
1.切換到指定目錄下
#cd 相對/絕對目錄 [root@localhost ~]# cd /home/tom/demo [root@localhost demo]#
2.切換到某個用戶的主文件夾
[root@localhost /]# cd ~tom [root@localhost tom]#
3.切換到自己的主文件夾
[root@localhost tom]# cd ~ [root@localhost ~]# 或者 [root@localhost demo]# cd [root@localhost ~]#
4.返回上級目錄
[root@localhost demo]# cd .. [root@localhost tom]#
5.回到剛纔在的目錄
[root@localhost tom]# cd - /home/tom/demo [root@localhost demo]#
6.切換到系統根目錄
[tom@localhost ~]$ cd /
pwd 顯示當前路徑
[root@localhost demo]# pwd /home/tom/demo
mkdir 新建目錄
1.簡單創建一個目錄 mkdir 目錄名
[root@localhost demo]# mkdir work [root@localhost demo]# ls work
2.創建目錄時同時賦予目錄許可權
[root@localhost demo]# mkdir -m 777 test [root@localhost demo]# ll 總用量 8 drwxrwxrwx 2 root root 4096 2月 12 20:15 test drwxr-xr-x 2 root root 4096 2月 12 20:09 work
3.創建多層目錄
[root@localhost demo]# mkdir -p test1/test2/test3 [root@localhost demo]# cd test1/test2/test3/ [root@localhost test3]# pwd /home/tom/demo/test1/test2/test3
rmdir 刪除文件夾
只能刪除沒有文件的目錄,如果刪除有文件的目錄可以使用 rm -r 目錄名
[root@hs-192-168-33-206 tom]# rmdir demo/ rmdir: 刪除 "demo/" 失敗: 目錄非空 #清除文件後,再次刪除可成功 [root@hs-192-168-33-206 tom]# rmdir demo/