Results 1 to 2 of 2
I was writing a bash script which attached to another script. The issue I'm having is, when I use the exit command written in the script, it takes me back ...
- 10-03-2010 #1
script issue
I was writing a bash script which attached to another script. The issue I'm having is, when I use the exit command written in the script, it takes me back to the first script. How do I disable this?
- 10-04-2010 #2
Use the exec command to launch your child script. That will cause the process that is running the parent to run the child instead. Since there is only one process, when it exits, it's gone.
"I'm just a little old lady; don't try to dazzle me with jargon!"


Reply With Quote