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.
23 lines
546 B
Plaintext
23 lines
546 B
Plaintext
#compdef fsh
|
|
|
|
local curcontext="$curcontext" state line ret=1
|
|
local -a _comp_priv_prefix
|
|
|
|
_arguments -C \
|
|
'(- : *)'{-h,--help}'[display help information]' \
|
|
'(- : *)'{-V,--version}'[display version information]' \
|
|
'-r[specify method]:method:(rsh ssh)' \
|
|
'-l[specify login id]:login:_users' \
|
|
'(-T --timeout)'{-T,--timeout}':idle timeout:' \
|
|
':remote host name:_hosts' \
|
|
'(-):command: _command_names -e' \
|
|
'*::args:->command' && ret=0
|
|
|
|
if [[ -n "$state" ]]; then
|
|
shift 1 words
|
|
(( CURRENT-- ))
|
|
_normal && ret=0
|
|
fi
|
|
|
|
return ret
|