From 0bc58b66a4850cdb8458a86c3d9a2fc81de82aa3 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:14:42 +0200 Subject: Adding upstream version 1:2.11. Signed-off-by: Daniel Baumann --- completions/tcpdump | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 completions/tcpdump (limited to 'completions/tcpdump') diff --git a/completions/tcpdump b/completions/tcpdump new file mode 100644 index 0000000..9a7c2e9 --- /dev/null +++ b/completions/tcpdump @@ -0,0 +1,64 @@ +# bash completion for tcpdump -*- shell-script -*- + +_tcpdump() +{ + local cur prev words cword split + _init_completion -s || return + + case $prev in + -!(-*)[rwFV]) + _filedir + return + ;; + --interface | -!(-*)i) + _available_interfaces -a + return + ;; + -!(-*)m) + _filedir mib + return + ;; + -!(-*)T) + COMPREPLY=($(compgen -W 'aodv carp cnfp lmp pgm pgm_zmtp1 radius + resp rpc rtcp rtp rtcp snmp tftp vat vxlan wb zmtp1' \ + -- "$cur")) + return + ;; + -!(-*)z) + compopt -o filenames + COMPREPLY=($(compgen -c -- "$cur")) + return + ;; + --relinquish-privileges | -!(-*)Z) + _allowed_users + return + ;; + -!(-*)[BcCDEGMsWy]) + return + ;; + --time-stamp-type | -!(-*)j) + COMPREPLY=($(compgen -W 'host host_lowprec host_hiprec adapter + adapter_unsynced' -- "$cur")) + return + ;; + --direction | -!(-*)Q) + COMPREPLY=($(compgen -W 'in out inout' -- "$cur")) + return + ;; + --time-stamp-precision) + COMPREPLY=($(compgen -W 'micro nano' -- "$cur")) + return + ;; + esac + + $split && return + + if [[ $cur == -* ]]; then + COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur")) + [[ ${COMPREPLY-} == *= ]] && compopt -o nospace + fi + +} && + complete -F _tcpdump tcpdump + +# ex: filetype=sh -- cgit v1.2.3