This answer to a similar question proposes a 1-line method to timeout a long-running command from the bash command line:

( /path/to/slow command with options ) & sleep 5 ; kill $!

But it's possible that a given "long-running" command may finish earlier than the timeout. (Let's call it a "typically-long-running-but-sometimes-fast" command, or tlrbsf for fun.)

So this nifty 1-liner approach has a couple of problems. First, the sleep isn't conditional, so that sets an undesirable lower bound on the time taken for the sequence to finish. Consider 30s or 2m or even 5m for the sleep, when the tlrbsf command finishes in 2 seconds — highly undesirable. Second, the kill is unconditional, so this sequence will attempt to kill a non-running process and whine about it.

So...

Is there a way to timeout a typically-long-running-but-sometimes-fast ("tlrbsf") command that

  • has a bash implementation (the other question already has Perl and C answers)
  • will terminate at the earlier of the two: tlrbsf program termination, or timeout elapsed
  • will not kill non-existing/non-running processes (or, optionally: will not complain about a bad kill)
  • doesn't have to be a 1-liner
  • can run under Cygwin or Linux

... and, for bonus points, runs the tlrbsf command in the foreground and any 'sleep' or extra process in the background, such that the stdin/stdout/stderr of the tlrbsf command can be redirected, same as if it had been run directly?

If so, please share your code. If not, please explain why.

I have spent awhile trying to hack the aforementioned example but I'm hitting the limit of my bash skills.

link|improve this question

2  
Another similar question: stackoverflow.com/questions/526782/… (but I think the 'timeout3' answer here is much better). – system PAUSE Mar 27 '09 at 16:23
feedback

7 Answers

up vote 31 down vote accepted

I think this is precisely what you are asking for:

http://www.bashcookbook.com/bashinfo/source/bash-4.0/examples/scripts/timeout3

link|improve this answer
That's a keen trick, using $$ for the background part. And nice that it will kill a hung tlrbsf immediately. But ugh, you have to choose a polling interval. And if you set the polling too low, it will eat CPU with constant signaling, making the tlrbsf run even longer! – system PAUSE Mar 27 '09 at 0:28
1  
You don't have to choose the polling interval, it has a default of 1s, that is pretty good. And the checking is very inexpensive, the overhead is negligible. I doubt that would make tlrbsf run noticeably longer. I tested with sleep 30, and got 0.000ms difference between using and not using it. – Juliano Mar 27 '09 at 0:36
3  
Right, I see that now. And it meets my exact requirements if you set the poll interval == timeout. Also works in pipelines, works with the whole thing backgrounded, works with multiple instances and other jobs running. Sweet, thanks! – system PAUSE Mar 27 '09 at 1:08
You are welcome! – Juliano Mar 27 '09 at 1:11
feedback

You are probably looking for the timeout command in coreutils. Since it's a part of coreutils, it is technically a C solution, but it's still coreutils. info timeout for more details. Here's an example:

timeout 5 /path/to/slow/command with options
link|improve this answer
In Mac you can install this via Macports or homebrew. – Ivan Z. Siu Jan 31 at 5:00
feedback

I prefer "timelimit", which has a package at least in debian.

http://devel.ringlet.net/sysutils/timelimit/

It is a bit nicer than the coreutils "timeout" because it prints something when killing the process, and it also sends SIGKILL after some time by default.

link|improve this answer
feedback

Kinda hacky, but it works. Doesn't work if you have other foreground processes (please help me fix this!)

sleep TIMEOUT & SPID=${!}; (YOUR COMMAND HERE; kill ${SPID}) & CPID=${!}; fg 1; kill ${CPID}

Actually, I think you can reverse it, meeting your 'bonus' criteria:

(YOUR COMMAND HERE & SPID=${!}; (sleep TIMEOUT; kill ${SPID}) & CPID=${!}; fg 1; kill ${CPID}) < asdf > fdsa
link|improve this answer
Nice try, but... – system PAUSE Mar 27 '09 at 0:33
(ls -ltR /cygdrive/c/windows & SPID=${!}; (sleep 1s; kill ${SPID}) & CPID=${!}; fg 1; kill ${CPID}) >fdsa – system PAUSE Mar 27 '09 at 0:33
bash: fg: no job control – system PAUSE Mar 27 '09 at 0:34
hmm.... echo ${-} ==> himBH. How do I set -m for the subshells? – system PAUSE Mar 27 '09 at 0:52
@system PAUSE, set -m, I think. – strager Mar 27 '09 at 1:07
show 3 more comments
feedback

See also the http://www.pixelbeat.org/scripts/timeout script the functionality of which has been integrated into newer coreutils

link|improve this answer
Neat, simple, uses TERM and not KILL. Nice! I had been exploring a trap/wait solution like this when I originally posed the question. – system PAUSE Feb 3 '10 at 23:25
feedback

In 99% of the cases the answer is NOT to implement any timeout logic. Timeout logic is in nearly any situation a red warning sign that something else is wrong and should be fixed instead.

Is your process hanging or breaking after n seconds sometimes? Then find out why and fix that instead.

As an aside, to do strager's solution right, you need to use wait "$SPID" instead of fg 1, since in scripts you don't have job control (and trying to turn it on is stupid). Moreover, fg 1 relies on the fact that you didn't start any other jobs previously in the script which is a bad assumption to make.

link|improve this answer
2  
With access to 100% of the source (and most of the hardware, such as network switches), I would agree that there are probably better solutions than a timeout. But when a 'tlrbsf' is closed-source, binary only, sometimes you have to work around that limitation. – system PAUSE Mar 27 '09 at 15:01
@lhunath, "in scripts you don't have job control (and trying to turn it on is stupid)" -- Please clarify here: stackoverflow.com/questions/690266/… – system PAUSE Mar 27 '09 at 15:42
@system PAUSE: Reply stackoverflow.com/questions/690266/… is correct, I also commented on it. – lhunath Mar 27 '09 at 17:22
6  
lhunath, what you're saying makes no sense. there are tons of cases where timing out is a good option, e.g. anytime you have to go over the network. – Nate Murray Feb 18 '11 at 21:36
feedback

If you already know the name of the program (let's assume program) to terminate after the timeout (as an example 3 seconds), I can contribute a simple and somewhat dirty alternative solution:

(sleep 3 && killall program) & ./program

This works perfectly if I call benchmark processes with system calls.

link|improve this answer
This kills other processes that happen to use the name and doesn't kill the process with the given name if it changes its name (e.g. by writing into argv[0], perhaps with other hacks to make more room). – Jed Apr 16 at 7:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.