浏览代码

Merge pull request #4285 from nmaggioni/master

'ip' command compatibility and much quicker external IP detection
Robby Russell 8 年之前
父节点
当前提交
0532860c61
共有 1 个文件被更改,包括 6 次插入2 次删除
  1. 6 2
      plugins/systemadmin/systemadmin.plugin.zsh

+ 6 - 2
plugins/systemadmin/systemadmin.plugin.zsh

@@ -140,12 +140,16 @@ d0() {
 
 # gather external ip address
 geteip() {
-    curl http://ifconfig.me
+    curl -s -S https://icanhazip.com
 }
 
 # determine local IP address
 getip() {
-    ifconfig  | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'
+    if (( ${+commands[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