我正在编写一个bash脚本,并且我正在尝试打开一个单独的终端窗口来运行命令。我能够打开一个新的终端窗口
open -a Terminal .
,但是可以在bash之间切换窗口吗?
答案 0 :(得分:1)
您可以使用命令osascript运行AppleScript脚本。
激活终端窗口的脚本:
tell application "Terminal" to activate
或打开新的终端窗口:
tell application "Terminal"
do script " "
activate
end tell
在此处找到 - https://superuser.com/questions/195633/applescript-to-open-a-new-terminal-window-in-current-space