日期:2014-05-16  浏览次数:20721 次

linux中删除find找到的文件
方法一:
    find . -name filename -exec rm -rf {} \;
方法二:
    find . -name filename |xargs rm -rf;