摘要:
I. 显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true隐藏显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool falseII. 删除目录下的.DS_Store:Find /path/to/files –type f –name “.DS_Store” -print –delete或者:Find /path/to/files –type f –name “.DS_Store” -print0 | xargs –0 阅读全文