我需要能够在shell脚本中运行AppleScript。我正在使用“AppleScript Runner”以处于交互模式,因此支持对话框等。我已经有了它的工作,但是我需要将AppleScript Runner应用程序的退出状态恢复到shell,所以我可以看到脚本中是否有任何错误。
这是我的shell脚本:
output=$(/usr/bin/osascript << EOT
tell application "AppleScript Runner"
do script "somescript.scpt"
end
EOT)
status=$?
这里我的变量$ status仅以osascript命令的退出状态结束(无论somescript.scpt是否实际成功运行,它都将为0),而不是应用程序AppleScript Runner的退出状态。
有没有人知道我怎么做到这一点?
谢谢!
答案 0 :(得分:2)
-e标志向stderr输出错误,是默认值。所以你只需要阅读stderr。
如果您不熟悉,这个答案可能对您有所帮助:
bash variable capture stderr and stdout separately or get exit value
编辑:添加了示例代码。
error=`osascript -e 'tell app "Finder" to adtivate' 2>&1`
echo $error
我系统上面的内容会捕获错误消息。