I testing the example included WinFormRExec, i´m trying to use curl but seems impossible receive output correctly.
I´m using a simple command with curl:
curl -o filesumi.bin http://web.com/file100mb.bin
If i use:
string line = shell.ReadLine();
It reads first two lines of curl output but the progress (next lines) aren´t show showed in real time, they are showed at once at the end when curl finish.
I know that curl writes output using StandardError and not StandardOutput, perhaps it´s the problem.
Anyways if you know how to capture in real time curl output will be very usefull for my project.
Thanks in advance for your help.