Ways to capture output stream of the process executed with e

Hi,

I need to capture output of the process executed with exec or other
eqavalent calls.

Thanks.

On 26.01.2007 09:47, Googy wrote:

I need to capture output of the process executed with exec or other
eqavalent calls.

Look for popen() and variants. Alternatively you can use backticks:
s = ls -lF

Kind regards

robert