Skip to content

Instantly share code, notes, and snippets.

@844196
Created January 27, 2015 18:26
Show Gist options
  • Select an option

  • Save 844196/5bcc057f50b355d86cd9 to your computer and use it in GitHub Desktop.

Select an option

Save 844196/5bcc057f50b355d86cd9 to your computer and use it in GitHub Desktop.
#!/bin/bash
inc=$(ifconfig | awk -F':' '!/^lo/ && /^[a-z]/{print $1}')
for i in ${inc[*]}
do
ifconfig "${i}" 2>/dev/null | awk '$1=="inet"{print "⎆ "$2}'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment