/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.2
completions/ssh-add
23 строки
447 B
Igor Murzov
ssh-add, ssh-keygen: -? needs to be quoted under failglob (take 2) (Alioth: #314709)
10 июн 2014, 02:43
10 июн 2014, 02:43
60b8fab
Код
Авторство
О чём код?
# ssh-add(1) completion -*- shell-script -*- _ssh_add() { local cur prev words cword _init_completion || return case $prev in -t|-s|-e) return ;; esac if [[ $cur == -* ]]; then COMPREPLY=( $( compgen -W '$( _parse_help "$1" "-\?" )' -- "$cur" ) ) return fi _filedir } && complete -F _ssh_add ssh-add # ex: ts=4 sw=4 et filetype=sh