Bash通配符总结
Bash通配符总结
通配符用于文件名/路径扩展, 不同于正则表达式.
?(pattern)
匹配pattern, 0次或1次
?
匹配任意字符, 1次
*(pattern)
匹配pattern, >=0次
*
匹配任意字符串, 包括空串
+(pattern)
匹配pattern, >=1次
@(pattern)
匹配pattern, ==1次
!(pattern)
匹配不匹配pattern, ==1次
通配符用于文件名/路径扩展, 不同于正则表达式.
匹配pattern, 0次或1次
匹配任意字符, 1次
匹配pattern, >=0次
匹配任意字符串, 包括空串
匹配pattern, >=1次
匹配pattern, ==1次
匹配不匹配pattern, ==1次