I have a shell scripting question in need of an answer. I've written the following simple script:
#!/bin/tcshwhich launches the three defined applications when run. However it leaves a terminal window open afterwards. Could someone please tell me what I'd need to include to have it close the terminal window when the script is done? [ Discuss ]
open /Applications/.../AppName1&
open /Applications/.../AppName2&
open /Applications/.../AppName3&
exit