apple : .Trashes, .fseventsd, and .Spotlight-V100
解决方案
1. 删除当前目录下所有.DS_Store文件
# 方案Afind . -name ".DS_Store" -depth -exec rm {} \;# 方案Bfind . -name ".DS_Store" | xargs rm -rf
删除自动生成的._*文件
系统命令dot_clean
find . -name '._*' -type f -print -exec rm -rf {} \;find . -name '.DS_Store' -type f -print -exec rm -rf {} \;# 禁止自动生成.DS_Store文件defaults write com.apple.desktopservices DSDontWriteNetworkStores true
._*文件
Mac压缩时自动添加
使用COPYFILE_DISABLE=1,可在压缩时避免生成
