On 04 Apr 2007 05:56:09 -0700, sanofsans <[EMAIL PROTECTED]> wrote: > Thank you for your answers. The problem is that the invoked script is > written by somebody else, and I do not know how it works. All I have > to do is to invoke it, and it displays an output. OR is there a way > to dump the output to a file eventhough you do not know how the > invoked script works?
Yes, on most modern operating systems, including Windows you can do output redirection: perl.exe file.pl > output.txt This will create a file named output.txt and put all of the program's output into it, instead of on the screen. -- Tamas Marki
