ngrep: New completion.

master
Ville Skyttä 2013-01-30 22:25:26 +02:00
parent d08b9f2335
commit 8c57295133
4 changed files with 60 additions and 0 deletions

View File

@ -223,6 +223,7 @@ bashcomp_DATA = a2x \
newgrp \
newlist \
newusers \
ngrep \
nmap \
nmcli \
nslookup \

37
completions/ngrep Normal file
View File

@ -0,0 +1,37 @@
# ngrep(8) completion -*- shell-script -*-
_ngrep()
{
local cur prev words cword
_init_completion || return
case $prev in
-h|-V|-n|-A|-s|-S|-c|-P)
return
;;
-I|-O)
_filedir pcap
return
;;
-d)
_available_interfaces -a
return
;;
-W)
COMPREPLY=( $( compgen -W 'normal byline single none' -- "$cur" ) )
return
;;
-F)
_filedir
return
;;
esac
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" -h )' -- "$cur" ) )
return
fi
} &&
complete -F _ngrep ngrep
# ex: ts=4 sw=4 et filetype=sh

View File

@ -0,0 +1 @@
assert_source_completions ngrep

View File

@ -0,0 +1,21 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "ngrep -"
sync_after_int
assert_complete_any "ngrep -d "
sync_after_int
teardown