/ Published in: Bash
URL: http://superuser.com/questions/198569/compressing-folders-on-a-mac-without-the-ds-store
If you need to zip a directory named folderName and ignore all .DS_Store files, then do the following:
Expand |
Embed | Plain Text
zip -r newArchiveName.zip folderName -x "*.DS_Store"
You need to login to post a comment.
