1
0
mirror of https://github.com/Gator96100/ProxSpace.git synced 2025-03-12 04:36:22 -07:00

27 lines
507 B
Bash

# urlsnarf completion -*- shell-script -*-
_urlsnarf()
{
local cur prev words cword
_init_completion || return
case $prev in
-*i)
_available_interfaces -a
return
;;
-*p)
_filedir pcap
return
;;
esac
if [[ $cur == -* ]]; then
COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur"))
fi
} &&
complete -F _urlsnarf urlsnarf
# ex: filetype=sh