Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: Command != command ???



Meino Christian Cramer <Meino.Cramer@xxxxxx> writes:

> From: Philippe Troin <phil@xxxxxxxx>
> Subject: Re: Command != command ???
> Date: 25 Jul 2005 12:20:24 -0700
> 
> > Meino Christian Cramer <Meino.Cramer@xxxxxx> writes:
> > 
> > > From: Philippe Troin <phil@xxxxxxxx>
> > > Subject: Re: Command != command ???
> > > Date: 25 Jul 2005 11:24:56 -0700
> > > 
> > > Script started on Mon Jul 25 20:43:47 2005
> > > 
> > > cat ./globtest
> > > 
> > > 
> > > #!/bin/zsh
> > > setopt extendedglob
> > > print -l **/*.jpg
> > > 
> > > 
> > > 
> > > 
> > > /bin/zsh -x ./globtest
> > 
> > 8< snip >8
> > 
> > Nothing suspicious here...
> > 
> > Do you have any .jpg files under the cwd? i.e., what does 
> > 
> >  find . "*.jpg"
> > 
> > say?
> > 
> > Phil.
> > 
> 
> Under . there are directories containing jpgs, yes. 
> 
> Even
> 
> 		print -l **/*.jpg
> 
> from the command line prints all of them.
> 
> The command
> 
> 	   find . "*.jpg"
> 
> prints everything under . but
> 
> 	   find . -name '*.jpg'
> 
> gives the same output as 
> 
> 		print -l **/*.jpg

Mmh...

What about this script:

	#!/bin/zsh
	print "### pwd"
        pwd
        command pwd
	print "### find"
        find . -name "*.jpg"
        print "### glob"
        print -l **/*.jpg

What's the output?

Phil.



Messages sorted by: Reverse Date, Date, Thread, Author