带有多个引号的问题

时间:2015-05-06 14:34:51

标签: xcode swift

我无法弄清楚我应该怎么写这个。有人可以帮忙吗?

"do shell script \"osascript -e 'quit app "\(clientUsed)"'""

该脚本应该说明这一点(如果注释是clientUsed)

osascript -e 'quit app "notes"'

1 个答案:

答案 0 :(得分:3)

尝试使用此功能(我们使用"

转义\"
"do shell script \"osascript -e 'quit app \"\(clientUsed)\"'\""

它对应于命令:

do shell script "osascript -e 'quit app "YOUR_CLIENT_USED"'"