我有一個shell腳本,用於檢查文件夾是否具有一定數量的文件並向用戶顯示錯誤消息。我使用applescript來顯示錯誤消息。有沒有辦法將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的?
乾杯。我使用第二種方法,因爲我沒有空格,這是最容易實現的。 –
如果var包含空格,我發現這個工作:'osascript -e'顯示對話框「string1」「$ var」'string2「'' – jrodatus