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

Re: zsh: no matches found



In the last episode (Mar 20), Toshiro said:
> Every time I type something like 'find . -name *log' I get the error:
>  zsh: no matches found
> when there's no file matching the wildcard in the current directory.
> Is there any way to change this behaviour? (I don't want to escape every 
> asterisk I type).

alias find="noglob find"

will work in this case.  You don't want to do it globally, though,
since almost all commands expect the shell to expand wildcards for
them.

-- 
	Dan Nelson
	dnelson@xxxxxxxxxxxxxxx



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