ngrep: New completion.
This commit is contained in:
parent
d08b9f2335
commit
8c57295133
@ -223,6 +223,7 @@ bashcomp_DATA = a2x \
|
|||||||
newgrp \
|
newgrp \
|
||||||
newlist \
|
newlist \
|
||||||
newusers \
|
newusers \
|
||||||
|
ngrep \
|
||||||
nmap \
|
nmap \
|
||||||
nmcli \
|
nmcli \
|
||||||
nslookup \
|
nslookup \
|
||||||
|
37
completions/ngrep
Normal file
37
completions/ngrep
Normal 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
|
1
test/completion/ngrep.exp
Normal file
1
test/completion/ngrep.exp
Normal file
@ -0,0 +1 @@
|
|||||||
|
assert_source_completions ngrep
|
21
test/lib/completions/ngrep.exp
Normal file
21
test/lib/completions/ngrep.exp
Normal 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
|
Loading…
x
Reference in New Issue
Block a user