shell中的通配符

shell中的通配符

shell常见通配符:

字符

含义

实例

*

匹配 0 或多个字符

a*b  a与b之间可以有任意长度的任意字符, 也可以一个也没有, 如aabcb, axyzb, a012b, ab。

?

匹配任意一个字符

a?b  a与b之间必须也只能有一个字符, 可以是任意字符, 如aab, abb, acb, a0b。

[list] 

匹配 list 中的任意单一字符

a[xyz]b   a与b之间必须也只能有一个字符, 但只能是 x 或 y 或 z, 如: axb, ayb, azb。

[!list] 

匹配 除list 中的任意单一字符

a[!0-9]b  a与b之间必须也只能有一个字符, 但不能是阿拉伯数字, 如axb, aab, a-b。

[c1-c2]

匹配 c1-c2 中的任意单一字符 如:[0-9]   [a-z]

a[0-9]b  0与9之间必须也只能有一个字符 如a0b,   a1b... a9b。

{string1,string2,...}

匹配 sring1 或 string2 (或更多)其一字符串

a{abc,xyz,123}b    a与b之间只能是abc或xyz或123这三个字符串之一。

例:

#  ls /etc/*.conf

# ls /etc/???.conf

/etc/nfs.conf  /etc/sos.conf  /etc/yum.conf

# touch  /opt/a{1,2,3}.txt

# ls /opt/a[123].txt

/opt/a1.txt  /opt/a2.txt  /opt/a3.txt

# ls /opt/a[1,2,3].txt

# ls /opt/a[13].txt

/opt/a1.txt  /opt/a3.txt

版权声明:
作者:WaterBear
链接:https://l-t.top/1603.html
来源:雷霆运维
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>