Best way to extract MAC address from ifconfig's output?

前端 未结 19 1818
面向向阳花
面向向阳花 2020-12-12 15:31

What is the best way to extract the MAC address from ifconfig\'s output?

Sample output:

bash-3.00# ifconfig eth0        
eth0      Link          


        
19条回答
  •  伪装坚强ぢ
    2020-12-12 16:28

    For Ubuntu/Debian

    ifconfig | grep HW | awk '{print $5}'
    

    For Rhat or CentOs try

    ip add | grep link/ether | awk '{print $2}'
    

提交回复
热议问题