mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-24 19:52:58 -08:00
15 lines
352 B
Bash
15 lines
352 B
Bash
# isql completion -*- shell-script -*-
|
|
# by Victor Bogado da Silva Lins <victor@bogado.net>
|
|
|
|
_isql()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
[[ -f $ODBCINI ]] &&
|
|
COMPREPLY=($(command grep "\[$cur" "$ODBCINI" | tr -d \[\]))
|
|
} &&
|
|
complete -F _isql isql
|
|
|
|
# ex: filetype=sh
|