我有一个 shell 脚本,它检查文件夹是否有一定数量的文件并向用户显示错误消息。我使用 applescript 来显示错误消息。有没有办法将 shell 脚本的变量传递给 AppleScript?
这是我所拥有的:
declare -i count=5;
osascript -e 'tell app "Xcode" to display dialog "Counted $count items." buttons {"Continue"}'
我希望输出是,Counted 5 items.
但它只是作为Counted $count items.
如何将 shell 脚本变量传递给 applescript?