Linux find xargs rm .orig

时间:2022-03-28 11:34:47
/*********************************************************************
* Linux find xargs rm .orig
* 声明:
* 本文主要是记录在用patch给系统打补丁时,补丁的源文件保存在.orig
* 文件中,尤其是当打补丁失败时,该文件是会生成的,在操作完成之后,我们
* 当然会希望自动将.orig文件删除。
*
* 2016-4-25 深圳 南山平山村 曾剑锋
********************************************************************/ 一、参考文档:
. Shell Scripting: Using bash with xargs
http://*.com/questions/1590297/shell-scripting-using-bash-with-xargs
. How to delete directories based on `find` output?
http://unix.stackexchange.com/questions/89925/how-to-delete-directories-based-on-find-output 二、操作方法:
. find * -iname *\.orig | xargs rm
. find . -name ".orig" -exec rm -r "{}" \;
. find . -name *\.orig -delete