如何将值从苹果脚本传递到 Automator 中的 shell 脚本?
How to pass value from apple script to shell script in Automator?
我打算 运行 一个 shell 脚本,然后是一个 AppleScript。但我想知道是否可以将参数值传递给 shell 脚本,如下所示。
我遇到了一些我不明白的奇怪错误。有人可以帮我理解这个错误并提供一种方法来将值(Continue/Don 不继续)从 Apple Script 传递到 Shell 脚本吗?
文本格式的代码:
on run {input, parameters}
set theDialogText to "By running this script, it will update your hosts file. Would you like to continue?"
set isupdate to display dialog theDialogText buttons {"Don't Continue", "Continue"} default button "Continue" cancel button "Don't Continue"
return {isupdate}
结束运行
首先请post文字,不要图片。
出现错误是因为display dialog
returns一条记录(根据Objective-C一个字典)但是参数必须是一个字符串。
你必须写
set isUpdate to button returned of (display dialog ... )
我打算 运行 一个 shell 脚本,然后是一个 AppleScript。但我想知道是否可以将参数值传递给 shell 脚本,如下所示。
我遇到了一些我不明白的奇怪错误。有人可以帮我理解这个错误并提供一种方法来将值(Continue/Don 不继续)从 Apple Script 传递到 Shell 脚本吗?
文本格式的代码:
on run {input, parameters}
set theDialogText to "By running this script, it will update your hosts file. Would you like to continue?"
set isupdate to display dialog theDialogText buttons {"Don't Continue", "Continue"} default button "Continue" cancel button "Don't Continue"
return {isupdate}
结束运行
首先请post文字,不要图片。
出现错误是因为display dialog
returns一条记录(根据Objective-C一个字典)但是参数必须是一个字符串。
你必须写
set isUpdate to button returned of (display dialog ... )