summaryrefslogtreecommitdiff
path: root/completions/wol
diff options
context:
space:
mode:
Diffstat (limited to 'completions/wol')
-rw-r--r--completions/wol8
1 files changed, 5 insertions, 3 deletions
diff --git a/completions/wol b/completions/wol
index 02030aba..ce1b7c50 100644
--- a/completions/wol
+++ b/completions/wol
@@ -11,9 +11,11 @@ _wol()
;;
-h|--host|-i|--ipaddr)
# Broadcast addresses
- COMPREPLY=( $( PATH=$PATH:/sbin ifconfig -a 2>/dev/null | \
- sed -ne 's/.*[[:space:]]\{1,\}Bcast:\([^[:space:]]*\).*/\1/p' \
- -e 's/.*[[:space:]]\{1,\}broadcast[[:space:]]\{1,\}\([^[:space:]]*\).*/\1/p' ) )
+ local PATH=$PATH:/sbin
+ COMPREPLY=( $( { ip addr show || ifconfig -a; } 2>/dev/null | \
+ sed -ne 's/.*[[:space:]]Bcast:\([^[:space:]]*\).*/\1/p' -ne \
+ 's/.*inet.*[[:space:]]brd[[:space:]]\([^[:space:]]*\).*/\1/p' -ne \
+ 's/.*[[:space:]]broadcast[[:space:]]\{1,\}\([^[:space:]]*\).*/\1/p' ) )
_known_hosts_real "$cur"
return 0
;;