主頁 > 知識庫 > 在Linux系統(tǒng)中批量刪除多個文件的方法總結(jié)

在Linux系統(tǒng)中批量刪除多個文件的方法總結(jié)

熱門標(biāo)簽:杭州電銷機(jī)器人有效果嗎 柯城手機(jī)地圖如何做地圖標(biāo)注 軟件電話機(jī)器人 金華呼叫中心外呼系統(tǒng)廠家 高德地圖標(biāo)注在電腦上 萊蕪移動外呼系統(tǒng) 申請400電話流程好嗎 襄陽地圖標(biāo)注店 小語股票電銷機(jī)器人

當(dāng)我們在linux系統(tǒng)中要刪除數(shù)萬或者數(shù)十萬甚至數(shù)百萬的文件時使用rm -rf *就不太好用,因?yàn)橐却荛L一段時間。在這種情況之下我們可以使用linux系統(tǒng)命令rsync來巧妙的處理。rsync實(shí)際上用的是替換原理,處理數(shù)十萬個文件也是秒刪。
    1. rsync安裝,有些系統(tǒng)默認(rèn)安裝有該命令
ubuntu系統(tǒng):

復(fù)制代碼
代碼如下:
sudo apt-get install rsync

fedora 系統(tǒng):
復(fù)制代碼
代碼如下:
sudo yum install rsync

其他的可以源碼安裝,到下面的網(wǎng)站下載
http://rsync.samba.org

    2. rsync提供了一些跟刪除有關(guān)的參數(shù)
rsync --help | grep delete
     --del                                an alias for --delete-during
     --delete                          delete extraneous files from destination dirs
     --delete-before             receiver deletes before transfer, not during
     --delete-during             receiver deletes during transfer (default)
     --delete-delay               find deletions during, delete after
     --delete-after                receiver deletes after transfer, not during
     --delete-excluded        also delete excluded files from destination dirs
     --ignore-errors             delete even if there are I/O errors
     --max-delete=NUM    don't delete more than NUM files
其中--delete-before接收者在傳輸之前進(jìn)行刪除操作

    3. 示例
清空目錄或文件,如下:
1、先建立一個空目錄

復(fù)制代碼
代碼如下:
mkdir /data/blank

2、用rsync刪除目標(biāo)目錄

復(fù)制代碼
代碼如下:

rsync --delete-before -d -a -H -v --progress --stats /data/blank/ /var/edatacache/

或者

復(fù)制代碼
代碼如下:

rsync --delete-before -d /data/blank/ /var/edatacache/

這樣/var/edatacache目錄就被快速的清空了。

選項(xiàng)說明:
–delete-before 接收者在傳輸之前進(jìn)行刪除操作
–progress          在傳輸時顯示傳輸過程
-a                       歸檔模式,表示以遞歸方式傳輸文件,并保持所有文件屬性
-H                      保持硬連接的文件
-v                       詳細(xì)輸出模式
–stats                給出某些文件的傳輸狀態(tài)
-d                      transfer directories without recursing

刪除文件夾
如果大量小文件都集中在幾個目錄中,那么這個方法就有用了。

復(fù)制代碼
代碼如下:

rm -f /var/log/httpd/access.log

將會強(qiáng)制刪除/var/log/httpd/access.log這個文件
-r 就是向下遞歸,不管有多少級目錄,一并刪除
-f 就是直接強(qiáng)行刪除,不作任何提示的意思
-i 進(jìn)行交互式刪除。
提示:使用rm命令要小心。因?yàn)橐坏┪募粍h除,它是不能被恢復(fù)的。了防止這種情況的發(fā)生,可以使用i選項(xiàng)來逐個確認(rèn)要刪除的文件。如果用戶輸入y,文件將被刪除。如果輸入任何其他東西,文件則不會刪除。
使用這個rm -rf刪除文件的時候一定要格外小心,linux沒有回收站的。
rm -r 目錄名:
將子目錄及子目錄中所有檔案刪除

復(fù)制代碼
代碼如下:

[root@localhost test]# ls -l

總計(jì) 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

復(fù)制代碼
代碼如下:

[root@localhost test]# rm -r test1

rm:是否進(jìn)入目錄 “test1”? y
rm:是否刪除 一般文件 “test1/log3.log”? y
rm:是否刪除 目錄 “test1”? y

復(fù)制代碼
代碼如下:

[root@localhost test]# ls -l

總計(jì) 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
[root@localhost test]#
 
rm -rf 目錄名 :
把子目錄及子目錄中所有檔案刪除,并且不用一一確認(rèn) 

復(fù)制代碼
代碼如下:

[root@localhost test]# rm -rf test2
[root@localhost test]# ls -l

總計(jì) 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
[root@localhost test]#

標(biāo)簽:河南 鶴壁 景德鎮(zhèn) 海北 黔南 天門 欽州 威海

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《在Linux系統(tǒng)中批量刪除多個文件的方法總結(jié)》,本文關(guān)鍵詞  在,Linux,系統(tǒng),中,批量,刪除,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《在Linux系統(tǒng)中批量刪除多個文件的方法總結(jié)》相關(guān)的同類信息!
  • 本頁收集關(guān)于在Linux系統(tǒng)中批量刪除多個文件的方法總結(jié)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章