我不知道该怎么写。有人能帮忙吗?
"do shell script \"osascript -e 'quit app "\(clientUsed)"'""
脚本应该这样说(如果使用了notes)
osascript -e 'quit app "notes"'
最佳答案
试试这个(我们用"
转义\"
)
"do shell script \"osascript -e 'quit app \"\(clientUsed)\"'\""
它对应于以下命令:
do shell script "osascript -e 'quit app "YOUR_CLIENT_USED"'"
关于xcode - 带有多个引号的问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30079820/