[Bash-completion-commits] [SCM] bash-completion branch, master, updated. e28d19ef4c413d850dd5a80e2ea3907f50608d70

Guillaume Rousse guillomovitch at zarb.org
Mon Apr 19 18:02:51 UTC 2010


The following commit has been merged in the master branch:
commit b6762781b876d8a5bfdb19fd7a97941852040706
Author: Guillaume Rousse <guillomovitch at zarb.org>
Date:   Mon Apr 19 19:45:24 2010 +0200

    initial import

diff --git a/Makefile.am b/Makefile.am
index 0af9e08..eb1106c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -52,6 +52,7 @@ bashcomp_DATA = contrib/abook \
 		contrib/gpg2 \
 		contrib/gzip \
 		contrib/heimdal \
+		contrib/hping2 \
 		contrib/iconv \
 		contrib/imagemagick \
 		contrib/info \
diff --git a/contrib/hping2 b/contrib/hping2
new file mode 100644
index 0000000..b1607f8
--- /dev/null
+++ b/contrib/hping2
@@ -0,0 +1,55 @@
+# bash completion for hping2
+
+have hping2 &&
+_hping2()
+{
+    local cur prev
+
+    COMPREPLY=()
+    cur=`_get_cword`
+    prev=`_get_pword`
+
+    case $prev in
+        -I|--interface)
+            _available_interfaces
+            return 0
+            ;;
+        -a|--spoof)
+            _known_hosts_real "$cur"
+            return 0
+            ;;
+        -o|--tos)
+            COMPREPLY=( $( compgen -W '02 04 08 10' ) )
+            return 0
+            ;;
+        -E|--file)
+            _filedir
+            return 0
+            ;;
+    esac
+
+    if [[ "$cur" == -* ]]; then
+        COMPREPLY=( $( compgen -W '--help --version --count --interval --fast \
+            --faster --numeric --quiet --interface --verbose --debug --bind \
+            --unbind --rawip --icmp --upd --scan --listen --spoof \
+            --rand-source --rand-dest --ttl --id --ipproto --winid -rel --frag \
+            --morefrag --dontfrag --fragoff --mtu --tos --rroute --icmptype \
+            --icmpcode --icmp-ipver --icmp-iphlen --icmp-iplen --icmp-ipid \
+            --icmp-ipproto --icmp-cksum --icmp-ts --icmp-addr --baseport \
+            --destport --keep --win --tcpoff --tcpseq --tcpack --seqnum \
+            --badcksum --tcp-timestamp --fin --syn --rst --push --ack --urg \
+            --xmas --ymas --data --file --sign --dump --print --safe --end \
+            --traceroute --tr-keep-ttl --tr-stop --tr-no-rtt' -- "$cur" ) )
+    else
+        _known_hosts_real "$cur"
+    fi
+} &&
+complete -F _hping2 hping2 hping
+
+# Local variables:
+# mode: shell-script
+# sh-basic-offset: 4
+# sh-indent-comment: t
+# indent-tabs-mode: nil
+# End:
+# ex: ts=4 sw=4 et filetype=sh

-- 
bash-completion



More information about the Bash-completion-commits mailing list