Hi, I'm trying to capture the standard output from a program called cURL.

Running the program from the command line as such:

>curl www.youtube.com

will write out the HTML page returned by YouTube.

My objective is to "capture" and manipulate this data. I read about the systems.diagnos tics.process class and its ability to redirect stdoutput/stdinput and thought it would be perfect --...