我正在尝试在 Applescript 中编写一个脚本,以全屏和自制风格打开终端,然后让终端执行我编写的 java 程序。然后该程序将在终端(无 GUI)中运行。
到目前为止,这是我的代码。我已经能够让终端全屏并输入命令,但我无法自制
tell application "Terminal"
do script "cd 'desktop/java/Amerika'; javac 'Amerika.java'; java 'Amerika'"
end tell
tell application "Terminal"
tell application "System Events"
keystroke "f" using {control down, command down}
end tell
end tell
这是另一个脚本,如果我将它添加到前一个脚本中,只需在自制软件中打开一个新的终端窗口,有时全屏,有时不
tell application "System Events"
tell process "Terminal"
tell menu item "Homebrew" of menu "New Window" of menu item "New Window" of menu "Shell" of menu bar item "Shell" of menu bar 1
click
end tell
end tell
end tell
第一个代码也有一些问题,因为它有时会打开一个全屏终端,有时它不会。
有没有办法让终端以全屏和自制风格打开然后执行一些东西?