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