Skip to content

Instantly share code, notes, and snippets.

@lukin0110
Created September 1, 2015 12:52
Show Gist options
  • Save lukin0110/9c8823dc093530501ded to your computer and use it in GitHub Desktop.
Save lukin0110/9c8823dc093530501ded to your computer and use it in GitHub Desktop.
Get mac address in ubuntu
#!/bin/bash
ifconfig -a eth0 | grep HWaddr | awk -F 'HWaddr ' '{print $2}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment