【代码】清理MacOS上zip文件中的隐藏目录 发表于 2022-05-14 更新于 2024-09-07 阅读次数: 前言 使用Automator,编写一个清理MacOS上zip文件中的隐藏目录的脚本 源代码 12345678for f in "$@"do fileType=$(file -bI "$f") if [[ $fileType == "application/zip; charset=binary" ]]; then zip -d "$f" \*__MACOSX\* || true zip -d "$f" \*.DS_Store\* || true fidone 完成 参考文献 少数派——涔C