mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-24 19:52:58 -08:00
18 lines
364 B
Bash
18 lines
364 B
Bash
# webmitm completion -*- shell-script -*-
|
|
|
|
_webmitm()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur"))
|
|
else
|
|
_known_hosts_real -- "$cur"
|
|
fi
|
|
|
|
} &&
|
|
complete -F _webmitm webmitm
|
|
|
|
# ex: filetype=sh
|