Skip to content

Instantly share code, notes, and snippets.

@lg3bass
Created March 29, 2016 13:40
Show Gist options
  • Save lg3bass/0b41d4c1a65b1e31e977 to your computer and use it in GitHub Desktop.
Save lg3bass/0b41d4c1a65b1e31e977 to your computer and use it in GitHub Desktop.
Get the IP address of your mac from the command line.
//get the ip address
ifconfig | grep "inet " | grep -v 127.0.0.1 | awk '{print $2}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment