Clean up the zip
archive from macOS-specific hidden files and folders like: .DS_Store
and __MACOSX
.
Created using
Apple Automator
.
- Accessed via the
Quick Actions
menu.
- Import the
Clean Up ZIP.workflow
file.
- Shell Script Code:
while read -r p; do
zip -d "$p" __MACOSX/\*
zip -d "$p" \*/.DS_Store
done
- v1.0 (
2020/04/08
):- Created automation