一 刪除空目錄
1、語法
rmdir [目錄名]
命令英文含義:remove empty directories
2.實戰
[
root@localhost test
]#mkdir test
[
root@localhost test
]#ls
test
[
root@localhost test
]#mkdir
-p janpan
/cang
[
root@localhost test
]#ls
janpan test
[
root@localhost test
]#rmdir test
[
root@localhost test
]#ls
janpan
[
root@localhost test
]#rmdir janpan
rmdir
:failed to remove
?.anpan
?.directory
not empty
二 刪除檔案或目錄
1、語法
rm -rf [檔案或目錄]
命令英文含義:remove
選項:-r:刪除目錄
-f:強制
2、實戰
[
root@localhost test
]#touch abc
[
root@localhost test
]#rm abc
rm
:remove regular empty file
?.bc
?.y
[
root@localhost test
]#ls
janpan
[
root@localhost test
]#rm
-r janpan
rm
:descend into directory
?.anpan
?.y
rm
:remove directory
?.anpan
/cang
?.y
rm
:remove directory
?.anpan
?.y
[
root@localhost test
]#ls
[
root@localhost test
]#mkdir
-p japan
/cangls
[
root@localhost test
]#rm
-rf japan
[
root@localhost test
]#ls
三 複製命令
1、語法
cp [選項] [原始檔或目錄] [目標檔案或目錄]
命令英文含義:copy
選項:-r:複製目錄
-p:連帶檔案屬性複製
-a:相當於 -pdr
2、實戰
[
root@localhost test
]#touch abc
[
root@localhost test
]#cp abc
/tmp
/bcd
[
root@localhost test
]#ls
/temp
ls
:cannot access
/temp:no
such file or directory
[
root@localhost test
]#ls
/tmp
bcd
[
root@localhost test
]#mkdir
-p japan
/can
[
root@localhost test
]#cp japan
/tmp
/cp
:omitting directory
?.apan
?
[
root@localhost test
]#ls
/tmp
bcd
[
root@localhost test
]#cp
-r japan
/tmp
[
root@localhost test
]#ls
/tmp
bcd
japan
[
root@localhost test
]#ll
total
0
-rw-
r--r--.
1root root
0jul
1219:31
abc
drwxr-xr
-x.3
root root
16jul
1219:33
japan
[
root@localhost test
]#ll
/tmp
-rw-
r--r--.
1root root
0jul
1219:32
bcd
drwxr-xr
-x.3
root root
16jul
1219:34
japan
[
root@localhost test
]#cp
-a abc
/tmp
/[
root@localhost test
]#ll
/tmp
total
280
-rw-
r--r--.
1root root
0jul
1219:31
abc
-rw-
r--r--.
1root root
0jul
1219:32
bcd
drwxr-xr
-x.3
root root
16jul
1219:34
japan
四 剪下或命名命令
1、語法
mv [原始檔或目錄] [目標檔案或目錄]
命令英文含義:move
注意:原始檔和目標檔案不在乙個目錄下,就是剪下,在乙個目錄下,就是改名。
2、實戰
[
root@localhost test
]#ls
abc japan
[
root@localhost test
]#mv japan
/tmp
/japan
[
root@localhost test
]#ls
/tmp
japan
[
root@localhost test
]#cd
/tmp
[
root@localhost tmp
]#cd
-
/
root
/test
[
root@localhost test
]#mv abc bcd
[
root@localhost test
]#ls
bcd
Linux目錄處理命令
1 建立目錄 mkdir make directories 格式 mkdir p 目錄名 p 遞迴建立 即可以這樣建立 mkdir pjapan cang 其中japan和cang都是之前沒有的檔案,即可以一次建立多級目錄 2 切換所在目錄 cd 目錄 change directory 簡化操作 c...
Linux目錄處理命令
ctrl l清屏 一.mkdir makdir 建立目錄 語法 mkdir p 目錄名 例 mkdir p txt linux txt,linux均不存在 特殊 可以同時建立多個目錄 例 mkdir txt linux txt linux1 同時在txt之下建立linux和linux1 txt目錄存...
Linux目錄處理命令
三 目錄處理 ls命令名稱 ls 命令英文原意 list 命令所在路徑 bin ls 執行許可權 所有使用者 功能描述 顯示目錄檔案 語法 ls 選項 ald 檔案和目錄 a 顯示所有檔案,包括隱藏檔案 l 詳細資訊顯示 d 檢視目錄屬性 案例 1 只列出目錄下的子目錄 root cdh maste...