프로그램/Linux / / 2013. 11. 18. 19:55

linux find

반응형

특정 패턴 제외 하고 파일 제거

find . -not -iwholename '*test*' -name '*.txt' -exec rm -f {} \;


특정 파일 제외 하고 파일 제거

find . -type f \( -iname '*.txt' ! -iname 'test.txt' \) -exec rm -f {} \;


특정 파일 제외 하고 찾기

find . -type f -name "*.txt" | egrep -v test.txt

반응형
  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유