_sbosnap (418B)
1 #compdef sbosnap 2 3 # sbotools: https://pink-mist.github.io/sbotools/ 4 5 local -a subcmds 6 subcmds=('fetch:Download a local copy of the slackbuilds.org tree (to SBO_HOME).' 7 'update:Update a previously fetched copy of the SBo tree.') 8 _describe 'command' subcmds 9 10 _arguments \ 11 '(-)'{-h,--help}'[Show help.]:' \ 12 '(-)'{-v,--version}'[Show version.]:' \ 13 && return 0 14 15 return 1 16 17 # Local Variables: 18 # mode: sh 19 # End: