我想在通知中显示
shell脚本运行的结果(exiftool -k -P -overwrite_original_in_place –
ImageDescription =“$1”/ * .ARW).我试图在主题中使用$1作为文本,但它显示的是$1而不是脚本输出. 最佳答案 在10.9或更高版本中,您可以使用显示通知AppleScript命令:
osascript -e 'on run {t}' -e 'display notification "" with title "t"' -e end title
在10.8中,您可以使用终端通知程序:
terminal-notifier -title title -message ''
terminal-notifier可以安装sudo gem install terminal-notifier.