summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bashrc2
-rwxr-xr-xnetset2
2 files changed, 2 insertions, 2 deletions
diff --git a/bashrc b/bashrc
index 1860b95..2ac0282 100644
--- a/bashrc
+++ b/bashrc
@@ -85,7 +85,7 @@ alias fuck='eval $(thefuck $(fc -ln -1)); history -r'
# FUNCTIONS
function lip () { # local ips
- ip -c addr | sed -n '/^[1-9]:/p;/inet /p'
+ ip -4 -c addr | sed -n '/^[1-9]:/p;/inet/p'
}
function xip () { # external ip
diff --git a/netset b/netset
index 747df16..83e19b9 100755
--- a/netset
+++ b/netset
@@ -27,7 +27,7 @@ do
N=$((N + 1))
[ $N -eq 10 ] && echo " failure" && exit 1
echo -n "." && sleep 1
- ADDR=$(ip -c addr show dev $dev | sed -n '/inet /p')
+ ADDR=$(ip -4 -c addr show dev $dev | sed -n '/inet/p')
done
echo
echo $ADDR