ALT Linux Team development discussions
 help / color / mirror / Atom feed
From: Mikhail Zabaluev <mhz@altlinux.org>
To: ALT Devel discussion list <devel@altlinux.ru>
Subject: [devel] Re: как правильно выполнить команду?
Date: Fri, 20 Jun 2003 00:44:52 +0400
Message-ID: <20030619204452.GA11284@mhz.mikhail.zabaluev.name> (raw)
In-Reply-To: <87y8zyqoxt.fsf@pc349.belcaf.minsk.by>

[-- Attachment #1: Type: text/plain, Size: 632 bytes --]

Hello Grigory,

On Thu, Jun 19, 2003 at 02:36:30PM +0300, Grigory Milev wrote:
>
>     >> CMD=/bin/date
>     >> [ -x "$CMD" ] && "$CMD"
> 
>     > CMD=/bin/date
>     > [ ! -x "$CMD" ] || "$CMD"
> А в чем половая разница в этих двух вариантах?

Первый в случае отсутствия /bin/date выдаёт ненулевой статус
и вызывает аварийное завершение скрипта при некоторых опциях
bash.

Совсем безопасно и понятно можно написать так:

CMD=/bin/date
if test -x "$CMD"; then
    "$CMD"
fi

-- 
Stay tuned,
  MhZ                                     JID: mhz@altlinux.org
___________
To do two things at once is to do neither.
		-- Publilius Syrus

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

      parent reply	other threads:[~2003-06-19 20:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-06-19 14:58         ` Alexander Bokovoy
2003-06-19 20:44       ` Mikhail Zabaluev [this message]

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=20030619204452.GA11284@mhz.mikhail.zabaluev.name \
    --to=mhz@altlinux.org \
    --cc=devel@altlinux.ru \
    /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