Says bluto:
I'm trying to figure out an effective way of timing out shell commands in Perl.
The technique I usually use for this is to make a very small tool
called stopafter:
#!/usr/bin/perl
# stopafter - run a command with a timeout
my $time = shift;
alarm($time);
exec @ARGV;
die "Couldn't exec @ARGV: $!; aborting";
To use stopafter, you say something like this:
stopafter 300 command arg arg...
The command runs, but it dies automatically after 300 seconds.
Now in your Perl program, use:
open FH, "stopafter 10 command |" or die ...;
Now read from the pipe as usual.
After 10 seconds, the timer expires and you
get an end-of-file condition on the pipe.
Hope this helps.
--
Mark Dominus
Perl Paraphernalia
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|