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

shell脚本 列出所有网卡的ip地址

时间:2016-01-26 16:44:48      阅读:495      评论:0      收藏:0      [点我收藏+]

标签:

#!/bin/bash
for i in `ifconfig | grep -o ^[a-z0-9]*`
do
ifconfig $i|sed -n 2p|awk ‘{ print $2 }‘|tr -d ‘addr:‘
done

执行结果按行显示所有网卡的ip

 

ifconfig | grep -o ^[a-z0-9]* 命令列出所有的网卡接口

ifconfig $i|sed -n 2p|awk ‘{ print $2 }‘|tr -d ‘addr:‘  命令 列出ip

shell脚本 列出所有网卡的ip地址

标签:

原文地址:http://www.cnblogs.com/lzy1991/p/5160782.html

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