59 lines
1.5 KiB
Plaintext
Raw Normal View History

2009-05-18 23:03:59 +02:00
# bash completion for ldapvi
_ldapvi()
{
local cur prev words cword
_init_completion || return
2009-05-18 23:03:59 +02:00
case $prev in
-h|--host)
2009-10-04 19:42:50 +02:00
_known_hosts_real "$cur"
return 0
;;
-Y|--sasl-mech)
2009-10-04 19:42:50 +02:00
COMPREPLY=( $( compgen -W 'EXTERNAL GSSAPI DIGEST-MD5 \
CRAM-MD5 PLAIN ANONYMOUS' -- "$cur" ) )
return 0
;;
--bind)
COMPREPLY=( $( compgen -W 'simple sasl' -- "$cur" ) )
return 0
;;
--bind-dialog)
COMPREPLY=( $( compgen -W 'never auto always' -- $cur ) )
return 0
;;
--scope)
COMPREPLY=( $( compgen -W 'base one sub' -- "$cur" ) )
return 0
;;
--deref)
COMPREPLY=( $( compgen -W 'never searching finding always' \
-- "$cur" ) )
return 0
;;
--encoding)
COMPREPLY=( $( compgen -W 'ASCII UTF-8 binary' -- "$cur" ) )
return 0
;;
--tls)
COMPREPLY=( $( compgen -W 'never allow try strict' \
-- "$cur" ) )
return 0
;;
esac
2009-05-18 23:03:59 +02:00
2009-10-04 19:42:50 +02:00
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
2009-10-04 19:42:50 +02:00
fi
2009-05-18 23:03:59 +02:00
} &&
complete -F _ldapvi ldapvi
# Local variables:
# mode: shell-script
2009-10-04 19:42:50 +02:00
# sh-basic-offset: 4
# sh-indent-comment: t
2009-10-04 19:42:50 +02:00
# indent-tabs-mode: nil
# End:
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh