X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org Message-ID: <4D04D130.9090006@gmx.de> Date: Sun, 12 Dec 2010 14:42:08 +0100 From: Matthias Andree User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.2.13) Gecko/20101207 Lightning/1.0b2 Thunderbird/3.1.7 MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: Executable named "[.exe" in c:\cygwin\bin? References: <4D04C14E DOT 90607 AT gmx DOT de> <4D04C262 DOT 50507 AT gmail DOT com> In-Reply-To: <4D04C262.50507@gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Am 12.12.2010 13:38, schrieb Daniel Colascione: > On 12/12/10 4:34 AM, Matthias Andree wrote: >>> [ -f file ] && echo is >> you cannot run scripts containing this >> under a "set -e" regime. > > Yes you can. > > `-e' > Exit immediately if a simple command (*note Simple > Commands::) exits with a non-zero status, unless the command > that fails is part of the command list immediately following > a `while' or `until' keyword, part of the test in an `if' > statement, part of a `&&' or `||' list, or if the command's > ^^^^^^^^^^^^^^^^^^^^^^^^^^^ > return status is being inverted using `!'. A trap on `ERR', > if set, is executed before the shell exits. > Yes, in theory. In practice, I've seen too many shells goof this up. The robust way to write the above under set -e is if [ -f file ] ; then echo is ; fi -- Matthias Andree -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple