Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to close a Terminal window from within a shell script? I have a .command file that should just get out of the way once it's done.

share|improve this question
Then why open one in the first place? – Ignacio Vazquez-Abrams Jan 10 '12 at 4:41
1  
Doesn't exit -f work for you? You might want to use nohup if you don't want your commands that are running to quit abruptly. – JS웃 Jan 10 '12 at 4:43
@IgnacioVazquez-Abrams I run a script by double-clicking a .command file, the functionality is complete, end of operation. i don't need the Terminal window hanging around. What's confusing about this? – ericsoco Jan 11 '12 at 6:14
I didn't know OS X required a terminal window to open when running a script. I would've expected better. – Ignacio Vazquez-Abrams Jan 11 '12 at 6:19

2 Answers

up vote 5 down vote accepted

(converted to an answer from my comment as suggested)

Using exit 0 will cleanly terminate the script, but whether Terminal window stays open is user-configurable in Terminal's preferences. The default is to alway stay open, but I prefer the setting "Close if shell exited cleanly". It can be changed in Settings -> Shell -> When the shell exists. With that setting the script will close the window automatically if the exit result is 0 (which is the default if nothing went wrong).

share|improve this answer
I do have "lose if shell exited cleanly" set, however in a certain script I want the terminal to stay open until user closes it... anyway around that? – Jonny May 14 at 2:37
Not directly (because .command adds ;exit to the shell), but you call an AppleScript that doesn't close, e.g.: osascript -e 'tell application "Terminal"' -e activate -e 'do script "run.my.jobs"' -e 'end tell' -- that window will always stay open – Simon Urbanek May 24 at 14:29

You can use apple script to quit the terminal app. Add the following to your script -

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

This will give you a popup confirming to close the app. You can disable this in Terminal preferences.

Alternatively, you can also use killall command to quit the app. The following would work just as well.

killall Terminal

Note:

Just as a side note, you can freely add the above commands to your script and it would work as you want. However, there are few caveats. First being you will limit the ability of your script to work on different boxes. Secondly, it would be safer to use nohup so that any commands that are currently running won't quit due to quitting of the Terminal app.

share|improve this answer
+1 I don't have a Mac so I'm going to assume this is the correct answer. – SiegeX Jan 10 '12 at 5:02
@SiegeX LOL .. I knew we could run apple scripts from terminal. Didn't really knew it was the osascript command. However, there is another cool command called killall which kinda does the same. Thank you for your trust and upvote. Appreciate it. :-) – JS웃 Jan 10 '12 at 5:06
... wow - this is really radical - killing all open scripts is certainly not what I'd recommend. Note that the behavior is user-configurable so if you change your setting in Settings -> Shell -> When the shell exists to a more sane "Close if shell existed cleanly" then you simply need exit 0 (or nothing) really. – Simon Urbanek Jan 10 '12 at 18:13
@SimonUrbanek didn't realize Terminal had that config option. That works perfectly. Your comment is really a separate answer on its own -- I went ahead and wrote it up as an answer below. Feel free to copy and paste it under your name if you want. Thanks! – ericsoco Jan 11 '12 at 6:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.