Linux 명령 파일 찾기 및 find xargs rm 삭제
425 단어 리 눅 스 명령 노트
$ 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#