码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 之 正则实践

时间:2018-05-10 20:52:29      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:正则实践

正则实践
1.通过awk获取IP地址
[root@localhost ~]# ifconfig eth2 | grep inet
                    inet addr:10.3.151.25  Bcast:10.3.151.255  Mask:255.255.255.0
                    inet6 addr: fe80::250:56ff:fe80:6e7e/64 Scope:Link
[root@localhost ~]# ifconfig eth2 | grep "\binet\b"
                    inet addr:10.3.151.25  Bcast:10.3.151.255  Mask:255.255.255.0
[root@localhost ~]# ifconfig eth2 | grep "\binet\b" | awk ‘{print $0}‘
                    inet addr:10.3.151.25  Bcast:10.3.151.255  Mask:255.255.255.0
[root@localhost ~]# ifconfig eth2 | grep "\binet\b" | awk ‘{print $2}‘
addr:10.3.151.25
[root@localhost ~]# ifconfig eth2 | grep "\binet\b" | awk ‘{print $2}‘| awk -F ‘:‘ ‘{print $2}‘
10.3.151.25

Linux 之 正则实践

标签:正则实践

原文地址:http://blog.51cto.com/12965094/2115003

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!