On 4-Mar-2004 17:46, Peter Stephenson wrote:
It would be nice, though, if zsh had an option to make file globbing case insensitive. I'd enable than on my Cygwin machine, since the Windows file systems basically *are* case insensitive...zzapper wrote:If I call the following script withvvv meIt will not list a file say READ.ME but will list READ.mefunction vvv () { for x in *$1*do echo $x done }function vvv() { setopt localoptions extended_glob local x for x in (#i)*$1* do echo $x done }
(Bash has such an option: nocaseglob...) – Michael