Skip to content

Instantly share code, notes, and snippets.

@Aeramor
Created February 18, 2015 05:35
Show Gist options
  • Save Aeramor/b3695d065ca25f7c0299 to your computer and use it in GitHub Desktop.
Save Aeramor/b3695d065ca25f7c0299 to your computer and use it in GitHub Desktop.
OSX Terminal Get IP
/sbin/ifconfig en0 | grep 'inet ' | cut -d: -f2 | awk '{ print $2}'
@Aeramor
Copy link
Author

Aeramor commented Mar 4, 2015

to set it as an alias:

alias my_ip='/sbin/ifconfig en0 | grep '''inet ''' | cut -d: -f2 | awk '''{ print $2 }''''

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment