Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^4: Backticks and SIGALRM

by sgt (Deacon)
on Aug 20, 2007 at 13:34 UTC ( [id://633822]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Backticks and SIGALRM
in thread Backticks and SIGALRM

as you are using qx() (which gets the full output anyway) maybe you can simply redirect the output of your external command to a file (using the system shell and process that later

my $cmd = "$ext_cmd > $my_output"; # using unixlike shell system($cmd) == 0 or die; #

(ignore if your OS is not unixlike) what does happen if you manually send SIGALRM to that external process? (wrap it in a shell if the execution time is too short).

cheers --stephan

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (8)
As of 2024-04-24 09:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found