如果在 Mac 终端中使用 AppleScript 语句?

如果在 Mac 终端中使用 AppleScript 语句?

代码是这样的:

“如果 $foo 为 1,那么 $foo 现在应该等于 18”?

谢谢

答案1

在 bash(命令行)中:

if [ "$foo" = "1" ] ; then
  foo=18
fi

在 AppleScript 中:

if foo equals 1 then
    set foo to 18
end if

回复评论:

set foo to 5
tell application "System Events"
    tell application "Firefox" to activate
    keystroke (foo as text) using command down
end tell

您可以将其按原样附加到我对您上一个问题的回答中,减去该set foo行。

相关内容