I have a server script that runs mysqld and forks to continue running. As an example:
./mysqld <parameters> &
echo "Parent runs next line in script."
<do more stuff>
Why does tee wait for the child process to end before it ends itself?
EDIT:
For example, the following always hangs:
./myscript | tee -a logfile.log
Because it can't be sure it has tee'd all the output if the child process is still running (and still has its standard output open).
Since the parent and child use the same standard output (which is connected to
tee's input, due to the pipe), there is no way forteeto distinguish them. Since it consumes all input, both the parent and child must close their standard output (or terminate) beforeteewill see and end-of-input condition.If you want
teeto exit when the parent script does, you should redirect output of the child (to a file or to/dev/nullfor example).