Mac세상
macOS의 터미널(terminal)에서 zip명령어 내리기
saltdoll
2012. 5. 7. 17:19
반응형
기본적으로 Mac 터미널에서 zip이 설치 되어 있습니다.
zip 압축파일명.zip 압축할파일명들(확장자포함)
참조: http://zosolution.com/160
DS_Store 비포함하고 압축 하기.
zip -r my-folder.zip my-folder -x "*.DS_Store"
명령 설명들
zipis a compression and packaging file utility for Unix.-ris for recursively including all folders underneath the target folder.my-folder.zipis the name of the compressed file we want to create.my-folderis the name of our target folder. The folder we want compressing.-x "*.DS_Store"is to exclude all files whose path ends with the string “.DS_Store”.
출처: https://thewebsitedev.com/compress-folders-mac-ds_store-files/
반응형