



I would like to create a main tcl script that will call 2nd tcl script and run it. But when the main tcl script calls the 2nd script, I would like the main script paused until the 2nd tcl script is done executing and returns, when the main script will then continue running the remainder of the main script. Is this possible?
Any other suggestions on doing this? I'm trying to avoid putting all the procedures in a single file.
Use the 'exec' command and do not background the process (don't use '&'). Tcl will wait until the 2nd script is done executing and then continue.