TIP-맥OS

macOS에서 특정디렉토리 제외하고 압축하기

무한열정 2021. 4. 15. 16:13

다음과 같이 터미널에서 입력한다.

주의사항으로 --exclude가 먼저 와야 동작한다.

 

* 입력 형식

tar --exclude {제외대상} -cvzf {압축 파일명} {압축할 대상 디렉토리명}

* 명령어 예시

tar --exclude node_modules/ --exclude public/ -cvzf react-redux.tgz ./react-redux