Feed on Posts or Comments

Linux 相關 Aaron on 08 六月 2009

Argument list too long

AddThis Social Bookmark Button

話說,最近一直在幫忙清垃圾信~ 結果發現到有時垃圾信的目錄太久沒清,都不能用正常的 RM 來刪除,總是會出現 『Argument list too long』 …. 這是因為 rm 在刪檔前,會針對這目錄做出一個 remove file list,但檔案數超過了他建立 list 的能量,這時,就只好用 find 這指令,找出一個,刪一個囉 ~~

find /var/spool/mqueue -type f -exec rm {} \;

搞定收工….

Linux 相關 Aaron on 25 二月 2009

用Find 指令找出檔案特定字串

AddThis Social Bookmark Button

近來發生很多人的網頁被植入不明連結,所以寫了個 command 去定時 scan 檔案出 report
以下是簡易的指令

find . -name 『*.php』 -exec grep iframe {} \;