in reply to return the output to the Parent script

or even, as TIMTOWTDI, with open in its pipe form
open($fh, '-|', 'some cmd to read from') or die '...'; while (<$fh>){ # read one line of output }
Regards,
svenXY