linux刪除指定目錄下,文件內容包含某個關鍵詞的文件

參考了的回答,https://zhidao.baidu.com/question/581304610.html 記錄一下命令:grep -rn "關鍵字" /root/logs/ -l  | xargs -n1 -I "ZZZZZ" grep -l "關鍵字" "ZZZZZ" | xargs -n1 -I "XXXXX" rm -f "XXXXX"
相關文章
相關標籤/搜索