Applescript或shellscript删除配置文件?

时间:2012-12-19 06:09:01

标签: shell applescript

请建议如何删除具有权限的配置文件;我的脚本的.cfg文件没有删除。 我尝试使用Applescript和shell脚本,但它不起作用,而且它也不是要求权限。

tell application "System Events"
    delete  file "/Library/Application Support/Macromedia/abc.cfg"
end tell

do shell script "rm -f /Library/Application Support/Macromedia/abc.cfg"

1 个答案:

答案 0 :(得分:0)

我找到了答案..我只是错过了单引号..

do shell script "rm -f '/Library/Application Support/Macromedia/abc.cfg'"