Linux 目錄基本操作 1

2022-07-24 12:18:11 字數 1692 閱讀 3060

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/

linux-- 目錄基本操作(2)

linux基本目錄操作命令

1.建立目錄 mkdir dir 選項 p 假如路徑上的目錄不存在,則會自動建立這些目錄 例子 mkdir p jdk jdk2 jdk3 建立3級路徑jdk jdk2 jdk3,假如無該路徑,則會自動建立沒有的目錄 2.刪除目錄 rmdir dir 選項 p 遞迴刪除dir目錄,當子目錄被刪除後,...

Linux 目錄基本操作(2)

cp 複製檔案或目錄 用法 cp option source原始檔 directory目標檔案,具體可以檢視 man cp 以常用的引數舉例 root hs 192 168 33 206 tom ll full time 總用量 24 rwxr xr x 1 root root 0 2019 02 ...

linux基本操作 1

ctrl d 鍵盤輸入結束或者退出終端 ctrl s 暫定當前程式,按任意鍵恢復 ctrl z 將當前程式放入後台執行 fg 恢復放入後台的程式到前台 ctrl a 到當前行首,相當於home ctrl e 到當前行尾,相當於end ctrl k 刪除從游標尾到行末 ctrl backspace 向...