summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorNiccolò Maggioni <nicco.maggioni@gmail.com>2015-08-27 11:34:53 +0200
committerNiccolò Maggioni <nicco.maggioni@gmail.com>2015-08-27 11:34:53 +0200
commitd923cebdb34c373597d6f11a0e57e4b73f9f53f4 (patch)
treed4109e65e1e4dd916442f2c47f9ca0aeab6f2656 /plugins
parent058bbe4f02be67102871d82de6aa194e6b865cf8 (diff)
downloadzsh-d923cebdb34c373597d6f11a0e57e4b73f9f53f4.tar.gz
zsh-d923cebdb34c373597d6f11a0e57e4b73f9f53f4.tar.bz2
zsh-d923cebdb34c373597d6f11a0e57e4b73f9f53f4.zip
Updated with @mcornella suggestions
Diffstat (limited to 'plugins')
-rw-r--r--plugins/systemadmin/systemadmin.plugin.zsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/systemadmin/systemadmin.plugin.zsh b/plugins/systemadmin/systemadmin.plugin.zsh
index 5618ba8f1..8c2633355 100644
--- a/plugins/systemadmin/systemadmin.plugin.zsh
+++ b/plugins/systemadmin/systemadmin.plugin.zsh
@@ -140,12 +140,12 @@ d0() {
# gather external ip address
geteip() {
- echo "$(curl -s -S http://ipecho.net/plain)"
+ curl -s -S https://icanhazip.com
}
# determine local IP address
getip() {
- if [ $(hash | grep '^ip=') ]; then
+ 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}'