gpt4 book ai didi

bash - 将变量从 shell 脚本传递到 applescript

转载 作者:行者123 更新时间:2023-11-29 08:50:20 42 4
gpt4 key购买 nike

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

最佳答案

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

关于bash - 将变量从 shell 脚本传递到 applescript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17242773/

42 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com