Created
September 22, 2016 01:32
-
-
Save henriquemenezes/270a04c2aa72b978e3c80afa61a66246 to your computer and use it in GitHub Desktop.
Get current IP addresses
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
IP="" | |
OS=`uname` | |
case "${OS}" in | |
Linux) | |
IP=`ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'` | |
;; | |
FreeBSD|OpenBSD) | |
IP=`ifconfig | grep -E 'inet.[0-9]' | grep -v '127.0.0.1' | awk '{ print $2}'` | |
;; | |
SunOS) | |
IP=`ifconfig -a | grep inet | grep -v '127.0.0.1' | awk '{ print $2} '` | |
;; | |
Darwin) | |
IP=`ifconfig | grep inet | grep -v '127.0.0.1' | awk '{ print $2 }'` | |
;; | |
*) | |
IP="Unknown" | |
;; | |
esac | |
echo "$IP" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment