apple : .Trashes, .fseventsd, and .Spotlight-V100

解决方案

1. 删除当前目录下所有.DS_Store文件

  1. # 方案A
  2. find . -name ".DS_Store" -depth -exec rm {} \;
  3. # 方案B
  4. find . -name ".DS_Store" | xargs rm -rf

删除自动生成的._*文件
系统命令dot_clean

  1. find . -name '._*' -type f -print -exec rm -rf {} \;
  2. find . -name '.DS_Store' -type f -print -exec rm -rf {} \;
  3. # 禁止自动生成.DS_Store文件
  4. defaults write com.apple.desktopservices DSDontWriteNetworkStores true

._*文件

Mac压缩时自动添加
使用COPYFILE_DISABLE=1,可在压缩时避免生成