如何壓縮 osx 中的資料夾(不包括「圖示」檔案)?

如何壓縮 osx 中的資料夾(不包括「圖示」檔案)?

我一直在嘗試使用終端壓縮資料夾並排除 Google Drive 討厭的「圖示」檔案。

這是我嘗試使用的命令:

zip my-zipped-folder.zip -r folder-to-zip/ -x "Icon" "*.DS_Store"

# Also tried \r and ^M
zip ... -x "Icon\r" "Icon^M"

由於某種原因,排除 .DS_Store 檔案有效,但排除 Icon 檔案則無效。

有誰知道如何從最終的 zip 中排除圖示檔案?

答案1

而不是-x "Icon"使用-x "*Icon*"

相關內容