shitbox/pkg/usr/share/bash-completion/completion/sync.bash

39 lines
910 B
Bash
Raw Normal View History

2023-02-13 10:30:46 -05:00
_sync() {
local i cur prev opts cmd
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${cmd},${i}" in
",$1")
cmd="sync"
;;
*)
;;
esac
done
case "${cmd}" in
sync)
opts="-d -f -h -V --data --file-system --help --version [FILE]..."
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
complete -F _sync -o bashdefault -o default sync