Skip to content

Instantly share code, notes, and snippets.

@solidsnack
Created August 1, 2013 04:39
Show Gist options
  • Select an option

  • Save solidsnack/6128459 to your computer and use it in GitHub Desktop.

Select an option

Save solidsnack/6128459 to your computer and use it in GitHub Desktop.
Find IPs, on OS X and Linux
function ips {
/sbin/ifconfig | tr '\t' ' ' | # OS X gives us tabs, remove them
sed -n '/^ *inet / { s/// ; p ;}' | # Only IPv4, thanks
cut -d' ' -f1 | # Throw away everything but the addr
sed s/addr:// | # Strip addr: prefix on Linux
fgrep -v 127.0.0.1 # We already know about this one
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment