From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3633 invoked from network); 23 May 1999 23:27:06 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 23 May 1999 23:27:06 -0000 Received: (qmail 23536 invoked by alias); 23 May 1999 23:27:01 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 6336 Received: (qmail 23518 invoked from network); 23 May 1999 23:27:00 -0000 Message-Id: <199905232325.TAA19507@ocalhost> Content-Type: text/plain MIME-Version: 1.0 X-Image-URL: http://www.peak.org/~luomat/luomat@peak.org.tiff In-Reply-To: <9905231330.AA16507@ibmth.df.unipi.it> From: Timothy J Luoma Date: Sun, 23 May 1999 19:25:10 -0400 To: Peter Stephenson Subject: Re: globbing error persists cc: zsh-workers@sunsite.auc.dk References: <9905231330.AA16507@ibmth.df.unipi.it> Replying to message of Sun, 23 May 1999 15:30:01 +0200 from Peter Stephenson regarding ``Re: globbing error persists '' > Something else to try, though I didn't get an answer to the last lot: do > you have MARKDIRS set? If so, unset it and see if it now works. That > would certainly incriminate stat(), since now it doesn't try to stat() the > file, so try `ls -ld /drives/swapdisk' and see what that gives, and if you > have dynamic loading, `zmodload stat; stat -rs /drives/swapdisk' and see > what that gives. # setopt|fgrep -i mark markdirs # unsetopt markdirs # /bin/ls /drives/ IBM3 swapdisk # /bin/ls /drives/*s* zsh: no matches found: /drives/*s* # /bin/ls -ld /drives/swapdisk drwxr-xr-t 3 root 1024 Feb 18 14:24 /drives/swapdisk # zmodload stat; stat -rs /drives/swapdisk zsh: correct 'stat' to 'tar' [nyae]? n zsh: command not found: zmodload zsh: 19474 exit 1 zmodload stat zsh: command not found: stat zsh: 19475 exit 1 stat -rs /drives/swapdisk TjL