This commit is contained in:
2025-10-15 09:00:46 +02:00
parent 2d5de900c4
commit f2aa66a5e1
115 changed files with 12107 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#!/bin/bash
KAZ_ROOT=/kaz
. "${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 -info"
COMPREPLY=( $(compgen -W "${local_prop}" -- $current) )
;;
esac
}
complete -F _borg scriptBorg.sh