18 lines
441 B
Bash
18 lines
441 B
Bash
|
#!/bin/bash
|
||
|
KAZ_ROOT=$(cd "$(dirname ${COMP_WORDS[0]})"/..; pwd)
|
||
|
. "${KAZ_ROOT}/bin/.commonFunctions.sh"
|
||
|
setKazVars
|
||
|
|
||
|
_borg()
|
||
|
{
|
||
|
local current=${COMP_WORDS[COMP_CWORD]}
|
||
|
case "$current" in
|
||
|
-*)
|
||
|
local_prop="-h -d -i -l -m -u -t -p -v"
|
||
|
COMPREPLY=( $(compgen -W "${local_prop}" -- $current) )
|
||
|
;;
|
||
|
esac
|
||
|
}
|
||
|
complete -F _borg scriptBorg.sh
|
||
|
|