将变量从shell脚本传递给applescript

时间:2013-06-21 19:19:41

标签: bash shell applescript osascript

我有一个我调用的shell脚本使用osascriptosascript调用shell脚本并传入我在原始shell脚本中设置的变量。我不知道如何将该变量从applescript传递到shell脚本。

如何将变量从shell脚本传递到applescript到shell脚本......?

如果我没有意义,请告诉我。

 i=0
 for line in $(system_profiler SPUSBDataType | sed -n -e '/iPad/,/Serial/p' -e '/iPhone/,/Serial/p' | grep "Serial Number:" | awk -F ": " '{print $2}'); do
 UDID=${line}
 echo $UDID
 #i=$(($i+1))
 sleep 1


 osascript -e 'tell application "Terminal" to activate' \
 -e 'tell application "System Events" to tell process "Terminal" to keystroke "t" using command down' \
 -e 'tell application "Terminal" to do script "cd '$current_dir'" in selected tab of the front window' \
 -e 'tell application "Terminal" to do script "./script.sh ip_address '${#UDID}' &" in selected tab of the front window'

 done

2 个答案:

答案 0 :(得分:14)

Shell变量不会在单引号内扩展。如果要将shell变量传递给osascript,则需要使用双""引号。问题是,你必须逃避osascript中所需的双引号,如:

脚本

say "Hello" using "Alex"

你需要逃脱报价

text="Hello"
osascript -e "say \"$text\" using \"Alex\""

这不是很易读,因此使用bash的heredoc功能要好得多,比如

text="Hello world"
osascript <<EOF
say "$text" using "Alex"
EOF

你可以在里面免费编写多行脚本,这比使用多个-e args要好得多......

答案 1 :(得分:2)

您还可以使用运行处理程序或导出:

osascript -e 'on run argv
    item 1 of argv
end run' aa

osascript -e 'on run argv
    item 1 of argv
end run' -- -aa

osascript - -aa <<'END' 2> /dev/null
on run {a}
    a
end run
END

export v=1
osascript -e 'system attribute "v"'

我不知道如何获得STDIN。 on run {input, arguments}仅适用于Automator。