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

Linux下取本机IP

时间:2015-06-16 08:04:25      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:linux

法一

root@test ~$eval `ifconfig | sed -rn ‘/^[^ \t]/{N;s/(^[^ ]*).*addr:([^ ]*).*/\1 \2/p}‘ | awk ‘$2!~/^127|^0|^$/{print $1"="$2}‘|head -1`
root@test ~$
root@test ~$
root@test ~$echo $eth0
10.240.210.131

法二

root@test ~$echo `ifconfig | sed -rn ‘1,2‘p | awk ‘{print $2}‘ | awk -F "addr:" ‘{print $2}‘ |sed /^\s*$/d`
10.240.210.131


Linux下取本机IP

标签:linux

原文地址:http://xoyabc.blog.51cto.com/7401264/1662198

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