4a135b33b7
* upgraded to subversion bash completion script shipped with subversion 1.6.17 * added git bash completion script shipped with git 1.7.5.4 * readded bash completion to the image git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42257 a95241bf-73f2-0310-859d-f6bbb57e9c96
72 lines
2.2 KiB
Bash
72 lines
2.2 KiB
Bash
# bash completion for mysqladmin
|
|
|
|
have mysqladmin &&
|
|
_mysqladmin()
|
|
{
|
|
local cur prev split=false
|
|
|
|
COMPREPLY=()
|
|
_get_comp_words_by_ref cur prev
|
|
|
|
_split_longopt && split=true
|
|
|
|
case $prev in
|
|
-u|--user)
|
|
COMPREPLY=( $( compgen -u -- "$cur" ) )
|
|
return 0
|
|
;;
|
|
-h|--host)
|
|
_known_hosts_real "$cur"
|
|
return 0
|
|
;;
|
|
--character-sets-dir|--ssl-capath)
|
|
_filedir -d
|
|
return 0
|
|
;;
|
|
-S|--socket)
|
|
_filedir sock
|
|
return 0
|
|
;;
|
|
--defaults-file|--defaults-extra-file)
|
|
_filedir
|
|
return 0
|
|
;;
|
|
-c|--count|--default-character-set|-P|--port|-O|--set-variable|\
|
|
-i|--sleep|--ssl-ca|--ssl-cert|--ssl-cipher|--ssl-key|-w|--wait|\
|
|
--connect_timeout|--shutdown_timeout)
|
|
# Argument required but no completions available
|
|
return 0
|
|
;;
|
|
'-?'|--help|-V|--version)
|
|
# All other options are noop with these
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
$split && return 0
|
|
|
|
COMPREPLY=( $( compgen -W '--count --debug-check --debug-info --force \
|
|
--compress --character-sets-dir --default-character-set --help --host \
|
|
--no-beep --password --port --protocol --relative --set-variable \
|
|
--silent --socket --sleep --ssl --ssl-ca --ssl-capath --ssl-cert \
|
|
--ssl-cipher --ssl-key --ssl-verify-server-cert --user --verbose \
|
|
--version --vertical --wait --connect_timeout --shutdown_timeout \
|
|
--print-defaults --no-defaults --defaults-file --defaults-extra-file' \
|
|
-- "$cur" ) )
|
|
|
|
COMPREPLY=( "${COMPREPLY[@]}" \
|
|
$( compgen -W 'create debug drop extended-status flush-hosts \
|
|
flush-logs flush-status flush-tables flush-threads flush-privileges \
|
|
kill password old-password ping processlist reload refresh shutdown \
|
|
status start-slave stop-slave variables version' -- "$cur" ) )
|
|
} &&
|
|
complete -F _mysqladmin mysqladmin
|
|
|
|
# Local variables:
|
|
# mode: shell-script
|
|
# sh-basic-offset: 4
|
|
# sh-indent-comment: t
|
|
# indent-tabs-mode: nil
|
|
# End:
|
|
# ex: ts=4 sw=4 et filetype=sh
|