/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.0
completions/ssh-add
23 строки
444 B
Ville Skyttä
ssh-add: New completion.
07 янв 2012, 11:42
07 янв 2012, 11:42
28f15fd
Код
Авторство
О чём код?
# 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