📜  通配符 linux - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:36.129000             🧑  作者: Mango

代码示例1
*  ------> Matches any characters
? -------> Matches any single character
[characters] Matches any character that is a member of the set of characters
[!characters] Matches any character that is NOT a member of the set of characters
[[:class:]] Matches any character that is a member of the specified class

eg: [[:upper:]]* any file that begins with an uppercase letter