利用shell脚本得到mac地址
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
在linux下,利用shell编程,可以很方便的处理文本或得到系统信息,这里就利用shell编程拿到mac地址,ipv4地址,ipv6地址。
ifconfig | awk '/eth0/{print $NF}'|tr : " "
50 E5 49 32 9D A0
/sbin/ifconfig |sed -ne "/eth0/ s/.*HWaddr \(.*\)/\1/p"|tr : " "
50 E5 49 32 9D A0
ifconfig | grep eth0 | awk '{print $5}' | awk -F: '{print $1 $2 $3 $4 $5 $6}'
50E549329DA0
ifconfig | grep eth0|cut -d':' -f2-7|cut -d '' -f4 | awk '{print $3}'
50:E5:49:32:9D:A0
ifconfig | grep -A 4 eth0 | awk '/inet\ addr/{print $2}' | awk -F: '{print $2}
192.168.1.4 eth0 ip addr
ifconfig | grep -A 4 eth0 | awk '/inet6\ addr/{print $3}' | awk -F/ '{print $1}'
fe80::52e5:49ff:fe32:9da0 ipv6 addr
这里主要利用awk,sed,cut等命令来实现,以后会逐个进行举例说明。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)