[Command] 폴더내부 특정 파일 및 폴더 지우기
2016. 7. 7. 12:51ㆍ컴퓨터 잘쓰기/Mac(OSX)
반응형
> find . -type d -name .git -depth -exec rm -rf {} \; -print
> find . -type d -name .svn -depth -exec rm -rf {} \; -print
> find . -type f -name .DS_Store -depth -exec rm -rf {} \; -print
권한 문제가 있을경우 sudo 붙여서 사용
반응형
'컴퓨터 잘쓰기 > Mac(OSX)' 카테고리의 다른 글
[Command] 라이브러리 파일 정보 확인 (0) | 2016.09.26 |
---|---|
[Path] 공인인증서 저장경로 (0) | 2016.07.27 |
[Command] 폴더별 파일 갯수 카운팅 (0) | 2016.07.05 |
[Path] Xcode Organizer Archives 에 등록된 앱 제거 (0) | 2016.04.04 |
[Tool] HoRNDIS - Mac OSX에서 Android USB 테더링 가능하게 해주는 드라이버 (0) | 2016.04.04 |