grep与孪生兄弟egrep差异
egrep是对grep的功能扩展,让其支持正则更加完美!
#grep与egrep不同 egrep完全支持正则
ls |grep -i '[a-z]\{3\}' === ls |egrep -i '[a-z]{3}'
egrep 'NW|EA' testfile === grep 'NW\|EA' testfile
#对于标准grep,如果在扩展元字符前面加\,grep会自动启用扩展选项-E
egrep是对grep的功能扩展,让其支持正则更加完美!
ls |grep -i '[a-z]\{3\}' === ls |egrep -i '[a-z]{3}'
egrep 'NW|EA' testfile === grep 'NW\|EA' testfile
#对于标准grep,如果在扩展元字符前面加\,grep会自动启用扩展选项-E