[Bash-completion-commits] [SCM] bash-completion branch, master, updated. 2.0-106-g06002d0

Ville Skyttä ville.skytta at iki.fi
Fri Feb 1 21:20:58 UTC 2013


The following commit has been merged in the master branch:
commit 9d15e25a9e527e2d310ba0e0501e26350998532a
Author: Ville Skyttä <ville.skytta at iki.fi>
Date:   Fri Feb 1 23:16:45 2013 +0200

    arpspoof,dsniff,ether-wake,nmap: Offer active interfaces only.

diff --git a/completions/arpspoof b/completions/arpspoof
index 9c1b99f..cf9c497 100644
--- a/completions/arpspoof
+++ b/completions/arpspoof
@@ -7,7 +7,7 @@ _arpspoof()
 
     case $prev in
         -i)
-            _available_interfaces
+            _available_interfaces -a
             return 0
             ;;
         -t)
diff --git a/completions/dsniff b/completions/dsniff
index 81c2a00..db9b02a 100644
--- a/completions/dsniff
+++ b/completions/dsniff
@@ -11,7 +11,7 @@ _dsniff()
             return 0
             ;;
         -i)
-            _available_interfaces
+            _available_interfaces -a
             return 0
             ;;
     esac
diff --git a/completions/ether-wake b/completions/ether-wake
index 2142d74..4957e05 100644
--- a/completions/ether-wake
+++ b/completions/ether-wake
@@ -7,7 +7,7 @@ _ether_wake()
 
     case $prev in
         -i)
-            _available_interfaces
+            _available_interfaces -a
             return 0
             ;;
         -p)
diff --git a/completions/nmap b/completions/nmap
index 89769bf..421fe09 100644
--- a/completions/nmap
+++ b/completions/nmap
@@ -15,7 +15,7 @@ _nmap()
             return 0
             ;;
         -e)
-            _available_interfaces
+            _available_interfaces -a
             return 0
             ;;
         -b|--dns-servers)

-- 
bash-completion



More information about the Bash-completion-commits mailing list