grep-E =egrep
+ 一个或者多个加号前面的字符
[root@gz1~]#egrep--color'r+o'1.txt root:x:0:0:root:/root:/bin/bash drooaemon:x:2:2:daemon:/sbin:/sbin/nologin operator:x:11:0:operator:/root:/sbin/nologin
.表示任何一个字符
*表示零个或多个*前面的字符
.*任意个任意字符
?0或者1个?前面的字符
+ 1或多个+前面的字符
原文链接:https://www.f2er.com/regex/359401.html