From 19ce23282ca6c00b482ac8044b64d91dbb3b62e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 1 Feb 2013 20:06:55 +0200 Subject: [PATCH] wol: Try "ip addr" before ifconfig for finding out broadcast addresses. --- completions/wol | 8 +++++--- 1 file 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 ;;