본문 바로가기
Linux/tar

tar 압축시 특정 디렉토리 제외하고 압축하기

by 준섭이 2014. 2. 3.
728x90

tar 압축시 특정 디렉토리 제외하고 압축하기


가끔 압축작업시 특정 폴더를 제외하고 압축하고 싶을 경우가 생긴다.

그럴때에는 --exclude 옵션을 사용하면 된다.


tar zcvf /home/bluemary/test.tar --exclude /usr/local/apache/logs /usr/local/apache

/home/bluemary/test.tar : 저정할 파일명

--exclude /usr/local/apache/logs : 제외시킬 경로

/usr/local/apache : 압축할 대상

'Linux > tar' 카테고리의 다른 글

리눅스 tar 압축 풀기  (0) 2014.01.14
리눅스 tar 압축  (0) 2014.01.14