11

我有一个我调用的 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
4

2 回答 2

13

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参数要好得多......

于 2013-06-21T19:57:14.393 回答
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"'

我不知道有什么方法可以得到标准输入。on run {input, arguments}仅适用于 Automator。

于 2013-06-21T21:27:35.093 回答