vote up 6 vote down star
3

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.

flag

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

4 Answers

vote up 5 vote down check

I think this is precisely what you are asking for:

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

link|flag
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 at 0:28
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 at 0:36
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 at 1:08
You are welcome! – Juliano Mar 27 at 1:11
vote up 3 vote down

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|flag
Nice try, but... – system PAUSE Mar 27 at 0:33
(ls -ltR /cygdrive/c/windows & SPID=${!}; (sleep 1s; kill ${SPID}) & CPID=${!}; fg 1; kill ${CPID}) >fdsa – system PAUSE Mar 27 at 0:33
bash: fg: no job control – system PAUSE Mar 27 at 0:34
hmm.... echo ${-} ==> himBH. How do I set -m for the subshells? – system PAUSE Mar 27 at 0:52
@system PAUSE, set -m, I think. – strager Mar 27 at 1:07
show 3 more comments
vote up 2 vote down

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|flag
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 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 at 15:42
@system PAUSE: Reply stackoverflow.com/questions/690266/… is correct, I also commented on it. – lhunath Mar 27 at 17:22
vote up 0 vote down

Nahhh, you want to use "timed-read" from the expect package.

$ timed-read 60 ./do_something_that_may_return.sh
link|flag
Hm, that looks a lot like the bash builtin "read -t" command. My Cygwin install (Fall 2008) includes expect 1.1, but no timed-read. Does it have any advantage over timeout3? It actually seems at a disadvantage, if the spawned process doesn't output anything. – system PAUSE Sep 18 at 16:06
Oh my gosh, thanks for mentioning read -t. :-) – jskaggz Sep 18 at 17:28

Your Answer

Get an OpenID
or

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