Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: execution log

by strat (Canon)
on May 08, 2006 at 08:31 UTC ( [id://547970]=note: print w/replies, xml ) Need Help??


in reply to execution log

If you want an internal solution, you could try something like writing a short sub or module which redirects STDOUT and STDERR into files, e.g

use FindBin (); use File::Basename (); sub RedirectOutputToFiles { my $scriptName = File::Basename::basename($0); my $stdoutFile = "$FindBin::Bin/$scriptName.stdout"; my $stderrFile = "$FindBin::Bin/$scriptName.stderr"; open (STDOUT, ">", $stdoutFile) or die "Error: couldn't redirect STDOUT: '$stdoutFile': $!"; open (STDERR, ">", $stderrFile) or die "Error: couldn't redirect STDERR: '$stderrFile': $!"; } # RedirectOutputToFiles

or the like, and then just execute the sub somehow

Best regards,
perl -e "s>>*F>e=>y)\*martinF)stronat)=>print,print v8.8.8.32.11.32"

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-19 04:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found