summaryrefslogtreecommitdiff
path: root/completions/hping2
diff options
context:
space:
mode:
authorDavid Paleino <dapal@debian.org>2011-01-09 18:19:18 +0100
committerDavid Paleino <dapal@debian.org>2011-01-09 18:19:18 +0100
commita5e203cfe5bc335667900a3026a13e613152b50c (patch)
treecbc49be2e8062a929ddb2cfc56e15adfdcab2c49 /completions/hping2
parentbccf24e53240356343eb48c00cd256fb7ad2a39a (diff)
parentfe2d7645df9f619a33feb8c8d7c89b1ea5fcad6b (diff)
downloadbash-completion-a5e203cfe5bc335667900a3026a13e613152b50c.tar.gz
Merge branch 'master' into 1.x
Conflicts: CHANGES configure.ac
Diffstat (limited to 'completions/hping2')
-rw-r--r--completions/hping255
1 files changed, 55 insertions, 0 deletions
diff --git a/completions/hping2 b/completions/hping2
new file mode 100644
index 00000000..e2e6bf1a
--- /dev/null
+++ b/completions/hping2
@@ -0,0 +1,55 @@
+# bash completion for hping2
+
+have hping || have hping2 || have hping3 &&
+_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 hping hping2 hping3
+
+# 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