Does ksh93 have a function to handle variables like files? I'd like to output sub process data to a variable which should be updated for each further write from the child. foo=$(ls -l) sends all output after the child terminates but I'd like to run the child in the background and $foo always reflects the whole output up to the moment.
Josh