前端之家收集整理的这篇文章主要介绍了
bash – 如何显示接口的IP地址?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我想
显示分配给eth1的IP地址,我该如何在
Bash中执行此操作?
试试这个(
Linux)
/sbin/ifconfig eth1 | grep 'inet addr:' | cut -d: -f2| cut -d' ' -f1
或者这个(Linux)
/sbin/ifconfig eth0 | awk -F ' *|:' '/inet addr/{print $4}'
或者这个(* BSD)
ifconfig bge0 | grep 'inet' | cut -d' ' -f2
或者这个(Solaris 10)
ifconfig e1000g0 | awk '/inet / {print $6}'
显然,更改接口名称以匹配您要从中获取信息的接口名称.
原文链接:https://www.f2er.com/bash/385778.html