Linux 命令查找文件并删除 find xargs rm

例子


$ find . -type f -name "*.o" | xargs rm -rf

root@ubuntu:~/test# find . -type f -name "*.o"
./a/a.o
./a/b.o
./b/aa.o
./b/bb.o
./c/c.o
./c/cc.o

root@ubuntu:~/test# find . -type f -name "*.o" | xargs rm -rf
root@ubuntu:~/test# ls
a  b  c
root@ubuntu:~/test# find . -type f -name "*.o"               
root@ubuntu:~/test# 

 

 

 

你可能感兴趣的:(Linux命令笔记)