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.
|
(converted to an answer from my comment as suggested) Using |
|||||
|
|
You can use
This will give you a popup confirming to close the app. You can disable this in Terminal preferences. Alternatively, you can also use
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 |
|||||||||
|

exit -fwork for you? You might want to usenohupif you don't want your commands that are running to quit abruptly. – JS웃 Jan 10 '12 at 4:43