ALT Linux Team development discussions
 help / color / mirror / Atom feed
From: Alexey Tourbin <at@altlinux.ru>
To: ALT Linux Team development discussions <devel@lists.altlinux.org>
Subject: Re: [devel] shell programming
Date: Fri, 21 Jan 2011 13:18:29 +0300
Message-ID: <20110121101829.GI5889@altlinux.org> (raw)
In-Reply-To: <20110121100156.GA12955@mw.mithraen.ru>

On Fri, Jan 21, 2011 at 01:01:56PM +0300, Денис Смирнов wrote:
> Задача -- выполнить некоторую функцию в shell-скрипте, и если вдруг эта
> функция выполняется больше 5-и секунд -- прибить ее нафиг и выполнить
> другую. Как это сделать?

func &
finished=

for 1 2 3 4 5; do
	sleep 1
	if ! kill -0 $!; then
		wait
		finished=1
	fi
done

if [ -z "$finished" ]; then
	echo >&2 killing func
	kill $!
	wait
fi


  reply	other threads:[~2011-01-21 10:18 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-21 10:01 Денис Смирнов
2011-01-21 10:18 ` Alexey Tourbin [this message]
2011-01-21 10:20   ` Alexey Tourbin
2011-01-21 15:28     ` Денис Смирнов
2011-01-21 10:29   ` Sergei Epiphanov
2011-01-21 10:56     ` Alexey Tourbin
2011-01-21 11:29   ` Sergei Epiphanov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110121101829.GI5889@altlinux.org \
    --to=at@altlinux.ru \
    --cc=devel@lists.altlinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Team development discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
		devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
	public-inbox-index devel

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.devel


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git