Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Writing the output of test::more in to another file

by arkturuz (Curate)
on Mar 05, 2008 at 10:25 UTC ( [id://672141]=note: print w/replies, xml ) Need Help??


in reply to Writing the output of test::more in to another file

The simplest way would be to redirect STDERR to STDOUT in BEGIN block:
BEGIN { *STDERR = *STDOUT; }

Now, you can redirect to some file with no problems:
test.pl > results.txt

Or you can invoke your program like:

perl test.pl > foo.txt 2>&1
It does the same thing (if you're on Unix-like OS).

Replies are listed 'Best First'.
Re^2: Writing the output of test::more in to another file
by Kashratul (Acolyte) on Mar 06, 2008 at 07:29 UTC
    thanks that worked.

    In 'perl test.pl > foo.txt 2>&1'

    What "2>&1" is for? thanks

      You can read more about that in Bash Guide for Beginners, chapter 9. Here's a quote from that document that explains "1" and "2": Each open file gets assigned a file descriptor. The file descriptors for stdin, stdout, and stderr are 0, 1, and 2, respectively.

      So "2>&1" means: redirect stderr to stdout. See more examples in the guide.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://672141]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-25 17:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found