Open new Terminal Tab from command line (Mac OS X)

前端 未结 13 2272
醉话见心
醉话见心 2020-12-02 04:19

Is it possible to open a new tab in Mac OS X\'s terminal from the command line in a currently opened tab?

I know that the keyboard shortcut to open a new tab in Term

13条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-02 04:52

    osascript -e 'tell app "Terminal"
       do script "echo hello"
    end tell'
    

    This opens a new terminal and executes the command "echo hello" inside it.

提交回复
热议问题