用于删除mac系统下的.DS_Store文件的脚本
tell application "Terminal"
activate
do script with command "
cd ~/../
sudo find $USER -name .DS_Store -print -exec rm {} ';'"
end tell