正则表达式打印本机IP、广播、子网掩码地址

前端之家收集整理的这篇文章主要介绍了正则表达式打印本机IP、广播、子网掩码地址前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

方法1:sed查询打印

[root@Linux9~]#ifconfigeth0|grep"inetaddr:"|sed's/Bcast.*$//'g|sed's/.*://g'
192.168.25.57

方法2:awk查询打印

[root@Linux9~]#ifconfigeth0|grep"inetaddr:"|sed's/Bcast.*$//'g|awk-F":"{'print$2'}
192.168.25.57

方法3:cut分段打印

[root@Linux9~]#ifconfigeth0|grep'Bcast'|cut-d':'-f3|cut-d""-f1
192.168.31.255

方法4:awk查询打印子网掩码

[root@Linux9~]#ifconfigeth0|grep'Mask'|awk-F:'{print$4}'
255.255.240.0
原文链接:https://www.f2er.com/regex/359551.html

猜你在找的正则表达式相关文章