Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
echo当我编辑它时,输出似乎是相同的。
echo
我还测试了其他命令,例如open,但两者的结果是相同的。
open
在传统sh风格的模式匹配中,匹配文件名组件中的零个或多个字符,因此, 和*之间没有区别*,无论是单独还是作为更大模式的一部分。*****
sh
*
**
***
但是,有一些通配符语法为**. 例如,由 Z shell实现的模式匹配扩展至x/**/y所有x/以配置选项由用户设置。/yx/yx/subdir/yx/subdir1/subdir2/ybashglobstar
x/**/y
x/
/y
x/y
x/subdir/y
x/subdir1/subdir2/y
bash
globstar