delorie.com/archives/browse.cgi | search |
X-Recipient: | archive-cygwin AT delorie DOT com |
X-SWARE-Spam-Status: | No, hits=-6.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,T_RP_MATCHES_RCVD |
X-Spam-Check-By: | sourceware.org |
Message-ID: | <4C7BEB07.9010908@redhat.com> |
Date: | Mon, 30 Aug 2010 11:31:51 -0600 |
From: | Eric Blake <eblake AT redhat DOT com> |
User-Agent: | Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100806 Fedora/3.1.2-1.fc13 Mnenhy/0.8.3 Thunderbird/3.1.2 |
MIME-Version: | 1.0 |
To: | cygwin AT cygwin DOT com |
Subject: | Re: 'test' utility behavior question. |
References: | <i5gpmp$ur$1 AT dough DOT gmane DOT org> |
In-Reply-To: | <i5gpmp$ur$1@dough.gmane.org> |
X-IsSubscribed: | yes |
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
List-Id: | <cygwin.cygwin.com> |
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
List-Archive: | <http://sourceware.org/ml/cygwin/> |
List-Post: | <mailto:cygwin AT cygwin DOT com> |
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
Sender: | cygwin-owner AT cygwin DOT com |
Mail-Followup-To: | cygwin AT cygwin DOT com |
Delivered-To: | mailing list cygwin AT cygwin DOT com |
On 08/30/2010 11:27 AM, Oleksandr Gavenko wrote: > $ /bin/test -d && echo ok > ok > $ /bin/test -d '' && echo ok || echo must_be_error > must_be_error Both of these results match POSIX. Remember, POSIX describes different behaviors for one argument than for two arguments (for the one-argument case, the string "-d" is non-empty, so the result must be 0; for the two-argument case, the string "-d" is a unary operator, and there is no directory named ''). > if [ -d $dir ]; then The bug is in your script. You forgot to use quoting or a bashism. Either of these fixes will correct your script (although the latter requires bash): if [ -d "$dir" ]; then if [[ -d $dir ]]; then This is not cygwin-specific. -- Eric Blake eblake AT redhat DOT com +1-801-349-2682 Libvirt virtualization library http://libvirt.org -- 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
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |