기억의 습작

특정 파일명 모두 삭제 본문

OS/Linux

특정 파일명 모두 삭제

뿌사리다 2021. 8. 28. 22:45

특정 파일명을 모두 삭제

  • # find . -name '*.war'                          // war파일 리스트 출력
  • # find . -name '*.war' -delete          // war파일만 골라서 삭제

 

특정 파일명을 제외한 나머지 파일들을 모두 삭제

  • # find . ! -name '*.war'                          //war파일을 제외한 나머지 파일 리스트
  • # find . ! -name '*.war' -delete          //war파일을 제외한 나머지 파일 삭제
728x90
반응형
LIST