5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-01-21 18:03:59 +03:00

14 lines
380 B
Plaintext
Raw Normal View History

#compdef _proxmox-tape() proxmox-tape
function _proxmox-tape() {
local cwords line point cmd curr prev
cworkds=${#words[@]}
line=$words
point=${#line}
cmd=${words[1]}
curr=${words[cwords]}
prev=${words[cwords-1]}
compadd -- $(COMP_CWORD="$cwords" COMP_LINE="$line" COMP_POINT="$point" \
proxmox-tape bashcomplete "$cmd" "$curr" "$prev")
}