Skip to content

Instantly share code, notes, and snippets.

@nachoaIvarez
Last active August 29, 2015 14:25
Show Gist options
  • Save nachoaIvarez/fa0194bf1e996269e875 to your computer and use it in GitHub Desktop.
Save nachoaIvarez/fa0194bf1e996269e875 to your computer and use it in GitHub Desktop.
Print LAN IP in the Mac terminal.
gip(){
ifconfig en0 | grep inet | grep -v inet6 | awk '{printf "\n\033[1;32m" $2 "\033[0m\n\n"}'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment