특정 디렉토리 또는 파일을 제외하고 TAR 압축하기

Posted by Breeze24
2016. 6. 5. 00:28 Unix
특정 디렉토리 또는 파일을 제외하고 TAR 압축하기


tar로 압축할 때 특정 디렉토리 또는 파일을 제외하고 묶는 방법


  tar -cvf 압축파일명 --exclude=*.zip --exclude=*.jsp 압축_대상_경로



 [tar명령어][옵션][압축파일명] [--exclude=][제외할 파일 종류][압축 대상 경로]

.