24 lines
444 B
Plaintext
Raw Normal View History

2012-01-07 09:42:53 +02:00
# 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