Skip to content

Instantly share code, notes, and snippets.

@kojiromike
Created November 3, 2016 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kojiromike/2049c5d90a7ae0c868f77b90a2c14568 to your computer and use it in GitHub Desktop.
Save kojiromike/2049c5d90a7ae0c868f77b90a2c14568 to your computer and use it in GitHub Desktop.
for nic in /sys/class/net/e*; do
[[ -h $nic ]] || continue
/sbin/ifconfig "${nic##*/}" | awk -F: '/inet addr:/{ print $2; exit }'
break
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment