Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Re: Re: Re^4: Use of IPC::Run rather than system()

by IlyaM (Parson)
on Jul 17, 2003 at 07:18 UTC ( [id://275134]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
           '>pty>' means '&>pty>', not '1>pty>'
               The pseudo terminal redirects both stdout and stderr
    ...
               grab stderr separately, do this:
    
                  start \@cmd, '<pty<', \$in, '>pty>', \$out, '2>', \$err 
    +;
    
  2. or download this
    use IPC::Run qw(run);
    
    ...
        '>pty>', sub { $out .= $_[0]; print STDOUT $_[0] },
        '2>', sub { $err .= $_[0]; print STDERR $_[0] },
        );
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-03-19 02:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found