'ip' command compatibility and much quicker external IP detection

This commit is contained in:
Niccolò Maggioni 2015-08-26 10:48:01 +02:00
parent 192de6bcff
commit a127c4f88e
No known key found for this signature in database
GPG Key ID: 4874B0C841E33264
1 changed files with 6 additions and 2 deletions

View File

@ -140,12 +140,16 @@ d0() {
# gather external ip address
geteip() {
curl http://ifconfig.me
echo "$(curl -s -S http://ipecho.net/plain)"
}
# determine local IP address
getip() {
ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'
if [ "$(which ip)" != "" ]; then
ip addr | grep "inet " | grep -v '127.0.0.1' | awk '{print $2}'
else
ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'
fi
}
# Clear zombie processes