<![CDATA[Latest posts for the topic "Xoá các files bị nhiễm virus từ kết quả của AVG?"]]> /hvaonline/posts/list/24.html JForum - http://www.jforum.net auditd start failed

dexxa wrote:
** Cho cháu hỏi thêm Cháu có 1 list các file bị nhiễm virus được report từ AvgScan. Các file này nằm ở nhiều đường dẫn khác nhau nhưng chúng có chung 1 tên. Giờ cháu muốn remove hết các file đó đựa trên list đó thì phải làm sao ạ.  
list đó đã chứa đường dẫn đầy đủ chưa? ]]>
/hvaonline/posts/list/34944.html#214512 /hvaonline/posts/list/34944.html#214512 GMT
auditd start failed /hvaonline/posts/list/34944.html#214516 /hvaonline/posts/list/34944.html#214516 GMT auditd start failed

dexxa wrote:
Dạ đầy đủ 100% anh  
Vậy thì có thể dùng: while read f; do rm -f "$f"; done < AVGResult.txt]]>
/hvaonline/posts/list/34944.html#214518 /hvaonline/posts/list/34944.html#214518 GMT
auditd start failed Code:
while read f; do rm -f "$f"; done < reportphp.txt
Theo em hiểu thì ý câu này là tạo 1 vòng lặp khi đọc biến f, nhưng ở đây chưa khai báo giá trị biến f ứng với cái gì mà :-/ report của em như sau
/home/webccap/www/quyen_auto_/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/quyen_auto_/pn1/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/quyen_auto_/ebh/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/quyen_auto_/ebh/convert_pdf/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/quyen_auto_/media/system/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/quyen_auto_/demo2/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/sistest/images/gifimg.php Virus identified Exploit.PHP  
Tất cả là 1 cùng 1 tên. Phần màu đỏ có phải remove đi không anh]]>
/hvaonline/posts/list/34944.html#214522 /hvaonline/posts/list/34944.html#214522 GMT
auditd start failed

dexxa wrote:
Cám ơn anh quanta. Nhưng không run được anh ạ. Nó bảo em đọc lại help của rm Code:
while read f; do rm -f "$f"; done < reportphp.txt
Theo em hiểu thì ý câu này là tạo 1 vòng lặp khi đọc biến f, nhưng ở đây chưa khai báo giá trị biến f ứng với cái gì mà :-/  
Em hiểu chưa đúng rồi.

dexxa wrote:
report của em như sau
/home/webccap/www/quyen_auto_/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/quyen_auto_/pn1/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/quyen_auto_/ebh/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/quyen_auto_/ebh/convert_pdf/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/quyen_auto_/media/system/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/quyen_auto_/demo2/images/gifimg.php Virus identified Exploit.PHP /home/webccap/www/sistest/images/gifimg.php Virus identified Exploit.PHP  
Tất cả là 1 cùng 1 tên. Phần màu đỏ có phải remove đi không anh 
Code:
while read f; do rm -f `echo "$f" | cut -f1 -d" "`; done < avgresult.txt
]]>
/hvaonline/posts/list/34944.html#214592 /hvaonline/posts/list/34944.html#214592 GMT
Xoá các files bị nhiễm virus từ kết quả của AVG? Code:
for i in `more reportphp.txt|awk '{print $1}'`; do rm -f $i; done
]]>
/hvaonline/posts/list/34944.html#214859 /hvaonline/posts/list/34944.html#214859 GMT
Xoá các files bị nhiễm virus từ kết quả của AVG?

mR.Bi wrote:
thế này dễ hiểu hơn: Code:
for i in `more reportphp.txt|awk '{print $1}'`; do rm -f $i; done
 
- more ở đây là thừa rồi - Trước và sau pipe (|) nên cách ra một khoảng trắng.]]>
/hvaonline/posts/list/34944.html#214860 /hvaonline/posts/list/34944.html#214860 GMT
Xoá các files bị nhiễm virus từ kết quả của AVG? /hvaonline/posts/list/34944.html#214866 /hvaonline/posts/list/34944.html#214866 GMT