aboutsummaryrefslogtreecommitdiff
path: root/completions/zsh/_sboclean
blob: 6394ed3e44cd872b0034dccbf6e3f0f2c2b909cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#compdef sboclean

# sbotools: https://pink-mist.github.io/sbotools/

_arguments -s \
	   - info \
	   '(-)'{-h,--help}'[Show help.]:' \
	   '(-)'{-v,--version}'[Show version.]:' \
	   - commands \
    	   '(-d --clean-dist)'{-d,--clean-dist}'[Clean distfiles (default /usr/sbo/distfiles).]' \
    	   '(-w --clean-work)'{-w,--clean-work}'[Clean working directories (default /tmp/SBo; /tmp for compat32).]' \
    	   '(-i --interactive)'{-i,--interactive}'[Ask for confirmation for each item to be removed.]' \
    && return 0

return 1

# Local Variables:
# mode: sh
# End: