shell获取mac地址及获取硬盘序列号的方法

       #读取服务器的MAC地址
       MAC=$(ifconfig eth0|grep eth0|awk '{print $5}')

       #读取服务器的硬件序列号
       hdparm -I /dev/sda  > /hdSerial.txt
       hdSer=$(grep \\"Serial Number" hdSerial.txt)
       SER=$(echo ${hdSer#*:})

你可能感兴趣的:(shell,服务器)