shell MAC 地址 校验

/***************************************************************************************
* shell MAC 地址 校验
* 说明:
* 要对MAC地址进行校验,记录一下正则表达式写法,有些方法在PC上验证是可行的,但到了
* 嵌入式产品上,可能就不一定能运行了。
*
* 2016-11-15 深圳 南山平山村 曾剑锋
**************************************************************************************/ 一、参考文档:
. BASH regex match MAC address
http://*.com/questions/19959537/bash-regex-match-mac-address
. Best way to extract MAC address from ifconfig's output
http://*.com/questions/245916/best-way-to-extract-mac-address-from-ifconfigs-output 二、测试shell脚本如下:
macPath=/sys/bus/i2c/devices/-/eeprom
mac=`grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}' $macPath` if [ ${#mac} -eq ]; then
echo "MAC Address: $mac"
ifconfig eth0 hw ether $mac
else
ifconfig eth0 hw ether :b3:d5::6f:
fi
上一篇:【Unity】使用AssetDatabase编辑器资源管理


下一篇:细谈unity资源加载和卸载