Skip to content

Instantly share code, notes, and snippets.

@brianswisher
Created January 8, 2013 19:19
Show Gist options
  • Save brianswisher/4487012 to your computer and use it in GitHub Desktop.
Save brianswisher/4487012 to your computer and use it in GitHub Desktop.
Get IP address on OSX Mountain Lion
IP_ADDRESS=`ifconfig en0 | grep inet | grep -v inet6 | awk '{print $2}'`
echo $IP_ADDRESS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment