1. 程式人生 > >linux的rm命令

linux的rm命令

昨天學習了建立檔案和目錄的命令mkdir ,今天學習一下linux中刪除檔案和目錄的命令: rm命令。rm是常用的命令,該命令的功能為刪除一個目錄中的一個或多個檔案或目錄,它也可以將某個目錄及其下的所有檔案及子目錄均刪除。對於連結檔案,只是刪除了連結,原有檔案均保持不變。

rm是一個危險的命令,使用的時候要特別當心,尤其對於新手,否則整個系統就會毀在這個命令(比如在/(根目錄)下執行rm * -rf)。所以,我們在執行rm之前最好先確認一下在哪個目錄,到底要刪除什麼東西,操作時保持高度清醒的頭腦。

1.命令格式:

rm [選項] 檔案… 

2.命令功能:

刪除一個目錄中的一個或多個檔案或目錄,如果沒有使用- r選項,則rm不會刪除目錄。如果使用 rm 來刪除檔案,通常仍可以將該檔案恢復原狀。

3.命令引數:

    -f, --force    忽略不存在的檔案,從不給出提示。

    -i, --interactive 進行互動式刪除

    -r, -R, --recursive   指示rm將引數中列出的全部目錄和子目錄均遞迴地刪除。

    -v, --verbose    詳細顯示進行的步驟

       --help     顯示此幫助資訊並退出

       --version  輸出版本資訊並退出

4.命令例項:

例項一:刪除檔案file,系統會先詢問是否刪除。 

命令:

rm 檔名

輸出:

[[email protected] test1]# ll

總計 4

-rw-r--r-- 1 root root 56 10-26 14:31 log.log

[email protected] test1]# rm log.log 

rm:是否刪除 一般檔案 “log.log”? y

[email protected] test1]# ll

總計 0[[email protected] test1]#

說明:

輸入rm log.log命令後,系統會詢問是否刪除,輸入y後就會刪除檔案,不想刪除則資料n。

例項二:強行刪除file,系統不再提示。 

命令:

rm -f log1.log

輸出:

[[email protected]

 test1]# ll

總計 4

-rw-r--r-- 1 root root 23 10-26 14:40 log1.log

[[email protected] test1]# rm -f log1.log 

[[email protected] test1]# ll

總計 0[[email protected] test1]#

例項三:刪除任何.log檔案;刪除前逐一詢問確認 

命令:

rm -i *.log

輸出:

[[email protected] test1]# ll

總計 8

-rw-r--r-- 1 root root 11 10-26 14:45 log1.log

-rw-r--r-- 1 root root 24 10-26 14:45 log2.log

[[email protected] test1]# rm -i *.log

rm:是否刪除 一般檔案 “log1.log”? y

rm:是否刪除 一般檔案 “log2.log”? y

[[email protected] test1]# ll

總計 0[[email protected] test1]#

例項四:將 test1子目錄及子目錄中所有檔案刪除

命令:

rm -r test1

輸出:

[[email protected] test]# ll

總計 24drwxr-xr-x 7 root root 4096 10-25 18:07 scf

drwxr-xr-x 2 root root 4096 10-26 14:51 test1

drwxr-xr-x 3 root root 4096 10-25 17:44 test2

drwxrwxrwx 2 root root 4096 10-25 17:46 test3

drwxr-xr-x 2 root root 4096 10-25 17:56 test4

drwxr-xr-x 3 root root 4096 10-25 17:56 test5

[[email protected] test]# rm -r test1

rm:是否進入目錄 “test1”? y

rm:是否刪除 一般檔案 “test1/log3.log”? y

rm:是否刪除 目錄 “test1”? y

[[email protected] test]# ll

總計 20drwxr-xr-x 7 root root 4096 10-25 18:07 scf

drwxr-xr-x 3 root root 4096 10-25 17:44 test2

drwxrwxrwx 2 root root 4096 10-25 17:46 test3

drwxr-xr-x 2 root root 4096 10-25 17:56 test4

drwxr-xr-x 3 root root 4096 10-25 17:56 test5

[[email protected] test]#

例項五:rm -rf test2命令會將 test2 子目錄及子目錄中所有檔案刪除,並且不用一一確認

命令:

rm -rf  test2 

輸出:

[[email protected] test]# rm -rf test2

[[email protected] test]# ll

總計 16drwxr-xr-x 7 root root 4096 10-25 18:07 scf

drwxrwxrwx 2 root root 4096 10-25 17:46 test3

drwxr-xr-x 2 root root 4096 10-25 17:56 test4

drwxr-xr-x 3 root root 4096 10-25 17:56 test5

[[email protected] test]#

例項六:刪除以 -f 開頭的檔案

命令:

rm -- -f

輸出:

[[email protected] test]# touch -- -f

[[email protected] test]# ls -- -f

-f[[email protected] test]# rm -- -f

rm:是否刪除 一般空檔案 “-f”? y

[[email protected] test]# ls -- -f

ls: -f: 沒有那個檔案或目錄

[[email protected] test]#

也可以使用下面的操作步驟:

[[email protected] test]# touch ./-f

[[email protected] test]# ls ./-f

./-f[[email protected] test]# rm ./-f

rm:是否刪除 一般空檔案 “./-f”? y

[[email protected] test]#

例項七:自定義回收站功能

命令:

myrm(){ D=/tmp/$(date +%Y%m%d%H%M%S); mkdir -p $D; mv "[email protected]" $D && echo "moved to $D ok"; }

輸出:

[[email protected] test]# myrm(){ D=/tmp/$(date +%Y%m%d%H%M%S); mkdir -p $D;  mv "[email protected]" $D && echo "moved to $D ok"; }

[[email protected] test]# alias rm='myrm'

[[email protected] test]# touch 1.log 2.log 3.log

[[email protected] test]# ll

總計 16

-rw-r--r-- 1 root root    0 10-26 15:08 1.log

-rw-r--r-- 1 root root    0 10-26 15:08 2.log

-rw-r--r-- 1 root root    0 10-26 15:08 3.log

drwxr-xr-x 7 root root 4096 10-25 18:07 scf

drwxrwxrwx 2 root root 4096 10-25 17:46 test3

drwxr-xr-x 2 root root 4096 10-25 17:56 test4

drwxr-xr-x 3 root root 4096 10-25 17:56 test5

[[email protected] test]# rm [123].log

moved to /tmp/20121026150901 ok

[[email protected] test]# ll

總計 16drwxr-xr-x 7 root root 4096 10-25 18:07 scf

drwxrwxrwx 2 root root 4096 10-25 17:46 test3

drwxr-xr-x 2 root root 4096 10-25 17:56 test4

drwxr-xr-x 3 root root 4096 10-25 17:56 test5

[[email protected] test]# ls /tmp/20121026150901/

1.log  2.log  3.log

[[email protected] test]#