If I have this perl application:
print `someshellscript.sh`;
which prints a bunch of things and takes a lot of time, how can I print this output in the middle of a shell script execution?
It seems that Perl will only print the result of someshellscript.sh when it is complete, is there a way to make the output stream in the middle of execution?
perl backticks
Ville m
source share