152 lines
3.4 KiB
Plaintext
Raw Normal View History

2009-05-21 01:21:31 +02:00
# bash completion for Postgresql
have psql || return
2009-05-21 01:21:31 +02:00
_pg_databases()
{
# -w was introduced in 8.4, https://launchpad.net/bugs/164772
# "Access privileges" in output may contain linefeeds, hence the NF > 1
COMPREPLY=( $( compgen -W "$( psql -AtqwlF $'\t' 2>/dev/null | \
awk 'NF > 1 { print $1 }' )" -- "$cur" ) )
2009-05-21 01:21:31 +02:00
}
_pg_users()
{
# -w was introduced in 8.4, https://launchpad.net/bugs/164772
COMPREPLY=( $( compgen -W "$( psql -Atqwc 'select usename from pg_user' \
template1 2>/dev/null )" -- "$cur" ) )
[ ${#COMPREPLY[@]} -eq 0 ] && COMPREPLY=( $( compgen -u -- "$cur" ) )
2009-05-21 01:21:31 +02:00
}
# createdb(1) completion
#
_createdb()
{
local cur prev words cword
_init_completion -n = || return
2009-10-04 19:42:50 +02:00
local split=false
2009-10-04 19:42:50 +02:00
_split_longopt && split=true
case $prev in
2009-10-04 19:42:50 +02:00
-h|--host)
_known_hosts_real "$cur"
return 0
;;
-U|--username|-O|--owner)
_pg_users
return 0
;;
-p|--port|-D|--tablespace|-E|--encoding|-T|--template)
# argument required but no completions available
return 0
;;
--help|--version)
# all other arguments are noop with these
return 0
;;
esac
$split && return 0
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
2009-10-04 19:42:50 +02:00
else
_pg_databases
fi
2011-04-04 22:14:39 +03:00
} &&
complete -F _createdb -o default createdb
2009-05-21 01:21:31 +02:00
# dropdb(1) completion
#
_dropdb()
{
local cur prev words cword
_init_completion -n = || return
2009-10-04 19:42:50 +02:00
local split=false
2009-10-04 19:42:50 +02:00
_split_longopt && split=true
case $prev in
2009-10-04 19:42:50 +02:00
-h|--host)
_known_hosts_real "$cur"
return 0
;;
-U|--username)
_pg_users
return 0
;;
--help|--version)
# all other arguments are noop with these
return 0
;;
esac
$split && return 0
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
2009-10-04 19:42:50 +02:00
else
_pg_databases
fi
2011-04-04 22:14:39 +03:00
} &&
complete -F _dropdb -o default dropdb
2009-05-21 01:21:31 +02:00
# psql(1) completion
#
_psql()
{
local cur prev words cword
_init_completion -n = || return
2009-10-04 19:42:50 +02:00
local split=false
2009-10-04 19:42:50 +02:00
_split_longopt && split=true
case $prev in
2009-10-04 19:42:50 +02:00
-h|--host)
_known_hosts_real "$cur"
return 0
;;
-U|--username)
_pg_users
return 0
;;
-d|--dbname)
_pg_databases
return 0
;;
-o|--output|-f|--file|-L|--log-file)
_filedir
return 0
;;
-c|--command|-F|--field-separator|-p|--port|-P|--pset|\
-R|--record-separator|-T|--table-attr|-v|--set|--variable)
# argument required but no completions available
return 0
;;
-\?|--help|-V|--version)
# all other arguments are noop with these
return 0
;;
esac
$split && return 0
if [[ "$cur" == -* ]]; then
# return list of available options
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
2009-10-04 19:42:50 +02:00
else
# return list of available databases
_pg_databases
fi
2011-04-04 22:14:39 +03:00
} &&
complete -F _psql psql
# 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