说我有一个包含三个文件的文件夹:
foo1
foo2
bar
1. 如果我跑步
list_of_files=$(print foo*)
echo $list_of_files
我得到: foo1 foo2
2.如果我跑步
list_of_files=$(print bar*)
echo $list_of_files
我得到: bar
3.但是,如果我跑步
list_of_files=$(print other*)
echo $list_of_files
我得到:(尽管zsh: no matches found: other*
变量$list_of_files
为空)
有没有办法让zsh不抱怨它是否不能与glob扩展匹配?
我的目标是使用上述机制来静默收集与给定的glob模式匹配的文件列表。