mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-09 20:33:34 -08:00
27 lines
507 B
Bash
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
|