I'm using system() to execute a shell program under Windows. I wonder
how I can get the result of the external program as a string, since
the system() returns either true or false. I also try to use the Dos
pipeline to save the result to a file, but it doesn't work like this:
system(" program.exe >result.txt"). I can't find anything to explain
why in ruby document. Anyone can help me a bit?
I'm using system() to execute a shell program under Windows. I wonder
how I can get the result of the external program as a string, since
the system() returns either true or false.
From: "Sky Yin" <sky.yin@gmail.com>
>
> I'm using system() to execute a shell program under Windows. I wonder
> how I can get the result of the external program as a string, since
> the system() returns either true or false.