Hi,
Maybe i was not clear so....my apologies...
Lets say i have the code lines below:
&executable(in,out);
&process_executable(out);
The script will run first the executable subrotuine and when the process finishes it will execute the process_executable subrotine which takes the output of the executable.
What i want its to know how can i simultaneously start the executable subrotuine and not wait for the output but instead read the output as it is written....something like:
&executable(in,out) && &process_executable(out);