ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
29 lines
930 B
Plaintext
29 lines
930 B
Plaintext
#compdef seq gseq
|
|
|
|
local variant args
|
|
|
|
_pick_variant -r variant gnu=GNU $OSTYPE --version
|
|
|
|
args=( ':: :_guard "^-[^0-9]*" '{first,step,last} )
|
|
case $variant in
|
|
gnu)
|
|
args+=(
|
|
'(--help --version)'{-f+,--format=}'[use printf style floating-point format]:format'
|
|
'(--help --version -s --separator)'{-s+,--separator=}'[use specified separator for numbers]:separator [\n]'
|
|
'(--help --version -w --equal-width)'{-w,--equal-width}'[equalize width by padding with leading zeroes]'
|
|
'(- 1 2 3)--help[display usage information]'
|
|
'(- 1 2 3)--version[display version information]'
|
|
)
|
|
;;
|
|
*)
|
|
args+=(
|
|
'-f+[use printf style floating-point format]:format'
|
|
'-s+[use specified separator for numbers]:separator [\n]'
|
|
'-t+[use specified string to terminate numbers]:string [\n]'
|
|
'-w[equalize width by padding with leading zeroes]'
|
|
)
|
|
;;
|
|
esac
|
|
|
|
_arguments -s -A '-[^1-9]*' $args
|