mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-24 19:52:58 -08:00
27 lines
518 B
Bash
27 lines
518 B
Bash
# dsniff completion -*- shell-script -*-
|
|
|
|
_dsniff()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
case $prev in
|
|
-r | -w | -f | -p)
|
|
_filedir
|
|
return
|
|
;;
|
|
-i)
|
|
_available_interfaces -a
|
|
return
|
|
;;
|
|
esac
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '$(_parse_usage "$1") -r -w -p' -- "$cur"))
|
|
fi
|
|
|
|
} &&
|
|
complete -F _dsniff dsniff
|
|
|
|
# ex: filetype=sh
|