mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-30 11:38:41 -07:00
17 lines
368 B
Bash
17 lines
368 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
|