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# 

 
 

좋은 웹페이지 즐겨찾기