I am writing a TCL script for the eggdrop bot. The primary function of this TCL script is to call an external BASH script. The BASH script takes a variable amount of time to execute, because it must first download software, and sometimes that software is rather large.
During those times when the BASH script is downloading a large file, there appears to be some sort of time-out issue, because the TCL script never produces any result to the channel. The external BASH script succeeds, but its output never reaches the TCL script which called it.
During those times when the bash script is only downloading *small* files, the output from the bash script reaches the TCL caller, and everything is fine.
Is anyone familiar with external script timeouts in eggdrop/TCL scripts?