mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-03-12 04:36:22 -07:00
18 lines
364 B
Bash
18 lines
364 B
Bash
# sshmitm completion -*- shell-script -*-
|
|
|
|
_sshmitm()
|
|
{
|
|
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 _sshmitm sshmitm
|
|
|
|
# ex: filetype=sh
|