我无法弄清楚我应该怎么写这个。有人可以帮忙吗?
"do shell script \"osascript -e 'quit app "\(clientUsed)"'""
该脚本应该说明这一点(如果注释是clientUsed)
osascript -e 'quit app "notes"'
答案 0 :(得分:3)
尝试使用此功能(我们使用"
)
\"
"do shell script \"osascript -e 'quit app \"\(clientUsed)\"'\""
它对应于命令:
do shell script "osascript -e 'quit app "YOUR_CLIENT_USED"'"