需求查询 包含‘555 777‘行的内容,使用一条命令
# cat abc.txt
123
444
555
666
777
# egrep ‘(777|555)‘ abc.txt
555
777
# grep -E ‘(777|555)‘ abc.txt
555
777
本文出自 “智能化未来_XFICC” 博客,请务必保留此出处http://xficc.blog.51cto.com/1189288/1685866
原文地址:http://xficc.blog.51cto.com/1189288/1685866