OSX - How to auto Close Terminal window after the “exit” command executed.

前端 未结 14 1181
孤独总比滥情好
孤独总比滥情好 2020-12-12 16:02

When I\'m done with Terminal, I want to exit it. Right now, I have three options:

  1. killall Terminal. It will end the process, but rather abruptly. I don\'t t

14条回答
  •  春和景丽
    2020-12-12 16:48

    You could use AppleScript through the osascript command:

    osascript -e 'tell application "Terminal" to quit'
    

提交回复
热议问题