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"



명령 설명들

  • zip is a compression and packaging file utility for Unix.
  • -r is for recursively including all folders underneath the target folder.
  • my-folder.zip is the name of the compressed file we want to create.
  • my-folder is 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/

 

 

반응형
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)