Skip to content

Instantly share code, notes, and snippets.

@vdudouyt
Last active August 29, 2015 13:59
Show Gist options
  • Save vdudouyt/10704356 to your computer and use it in GitHub Desktop.
Save vdudouyt/10704356 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
# A Perl rewrittement of binutils timeout.
# Sometimes binutils timeout makes MPlayer hanging for unknown reasons. This version doesn't.
$SIG{ALRM} = sub {
# Give no mercy neither to the process itself nor to it's child
kill -9, $$;
};
&print_usage() if !@ARGV;
alarm(shift @ARGV);
system(@ARGV);
sub print_usage {
print STDERR "Usage: $0 <timeout> COMMAND [args]\n";
exit(-1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment