脚本遍历网络接口提取指定的信息
摘要:
#!/bin/sh### show all network interface e.g: eth0 192.168.0.1 255.255.255.0 ###interface="$(ifconfig | grep 'Link encap:Ethernet' | cut -d' ' -f1)"for n in $interfacedo myIp=$(ifconfig $n | grep 'inet addr:' | grep -v '127.0.0.1' | cut -d: -f2 | awk '{pr 阅读全文
posted @ 2013-02-27 23:00 流川仙道 阅读(195) 评论(0) 推荐(0) 编辑