来自https://linux.die.net/man/1/zshmisc:
noglob
Filename generation (globbing) is not performed on any of the words.
zsh 示例:
$ ls /*
<lots of output>
$ noglob ls /*
ls: cannot access '/*': No such file or directory
$ ls "/*"
ls: cannot access '/*': No such file or directory
在鱼中,这适用于引号:
$ ls "/*"
ls: cannot access '/*': No such file or directory
鱼是否可以在不需要引号的情况下做同样的事情?