假设,我们这里有个文件aaa.txt,其内容中有一些包括有效IP地址的行,需要我们用一条命令找出这些行,此时不妨用egrep试试哦。
先来看下aaa.txt文件的内容:
elinuxjishu/14086.html target=_blank class=infotextkey>grep命令上场:
[root@localhost]# egrep '([^0-9]|<)(([0-1]?[0-9]{0,2}|([2]([0-4][0-9]|[5][0-5]))).){3}([0-1]?[0-9]{0,2}|([2]([0-4][0-9]|[5][0-5])))([^0-9]|>)' aaa.txt
结果:
192.168.1.1
asdfasdf127.0.0.1asdfsadf
0.0.0.0
255.255.0.0
[root@localhost 桌面]#