mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
21 lines
449 B
Bash
21 lines
449 B
Bash
#compdef restic
|
|
|
|
_arguments \
|
|
'1: :->level1' \
|
|
'2: :_files'
|
|
case $state in
|
|
level1)
|
|
case $words[1] in
|
|
restic)
|
|
_arguments '1: :(backup cache cat check diff dump find forget generate help init key list ls migrate mount options prune rebuild-index recover restore self-update snapshots stats tag unlock version)'
|
|
;;
|
|
*)
|
|
_arguments '*: :_files'
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
_arguments '*: :_files'
|
|
;;
|
|
esac
|