From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7855 invoked from network); 25 Jul 2005 18:25:24 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 25 Jul 2005 18:25:24 -0000 Received: (qmail 42583 invoked from network); 25 Jul 2005 18:25:18 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 25 Jul 2005 18:25:18 -0000 Received: (qmail 25011 invoked by alias); 25 Jul 2005 18:25:11 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9169 Received: (qmail 25001 invoked from network); 25 Jul 2005 18:25:10 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 25 Jul 2005 18:25:10 -0000 Received: (qmail 41484 invoked from network); 25 Jul 2005 18:25:10 -0000 Received: from tantale.fifi.org (64.81.251.130) by a.mx.sunsite.dk with SMTP; 25 Jul 2005 18:25:01 -0000 Received: from ceramic.fifi.org (Debian-exim@ceramic.fifi.org [64.81.251.131]) by tantale.fifi.org (8.9.3p2/8.9.3/Debian 8.9.3-21) with ESMTP id LAA17578; Mon, 25 Jul 2005 11:24:56 -0700 Received: from phil by ceramic.fifi.org with local (Exim 4.34) id 1Dx7dI-0002nh-Lz; Mon, 25 Jul 2005 11:24:56 -0700 To: Meino Christian Cramer Cc: zsh-users@sunsite.dk Subject: Re: Command != command ??? References: <20050724.074251.74755659.Meino.Cramer@gmx.de> <87r7dnsvjn.fsf@ceramic.fifi.org> <20050725.200029.41628640.Meino.Cramer@gmx.de> Mail-Copies-To: nobody From: Philippe Troin Date: 25 Jul 2005 11:24:56 -0700 In-Reply-To: <20050725.200029.41628640.Meino.Cramer@gmx.de> Message-ID: <877jfeoi9z.fsf@ceramic.fifi.org> User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.2 required=5.0 tests=BAYES_00,PLING_QUERY autolearn=no version=3.0.4 Meino Christian Cramer writes: > Hmmm....my script now looks like this: > > #!/bin/zsh > setopt extendedglob As mentionned earlier on in the thread, this is not necessary anymore. > > if [ ! -d ./EXIF ] > then > mkdir ./EXIF ] > fi > > for i in **/*.jpg <<<<<---- line 9 > do > echo -n "examine $i..." > idx=0; > fn=$(basename $i .jpg) > fnex=${fn}.exif-${idx}.txt > while [ -f ./EXIF/${fnex} ] > do > idx=$(( idx + 1 )) > fnex=${fn}.exif-${idx}.txt > done > print "...writing ./EXIF/${fnex}" > jhead -v $i > ./EXIF/${fnex} > done > > ...but...still getting this: > > ./mkexif.sh:9: no matches found: **/*.jpg > > After all this I must confess: My confusion became now one of my > lesser problems... ;O) Try running the script as: /bin/zsh -x script And send us the result. As Bart wrote, it might be some of your ~/.z* files messing up the cwd. Phil.