Files
mdbtools/src/util/bash-completion/mdb-hexdump

14 lines
220 B
Plaintext
Raw Normal View History

#-*- mode: shell-script;-*-
_mdb_hexdump()
{
local cur
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
if (( COMP_CWORD == 1 )); then
_filedir '@(mdb|mdw|accdb)'
fi
return 0
} &&
complete -F _mdb_hexdump mdb-hexdump