mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
15 lines
240 B
Bash
15 lines
240 B
Bash
#-*- mode: shell-script;-*-
|
|
have mdb-hexdump &&
|
|
_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
|