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