facf0c92e0
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.
24 lines
574 B
Plaintext
24 lines
574 B
Plaintext
#compdef chflags
|
|
|
|
local args own='-g *(-u$EUID)'
|
|
|
|
(( ! EUID || $+_comp_priv_prefix )) && own=
|
|
|
|
if [[ $OSTYPE = (darwin|dragonfly|freebsd)* ]]; then
|
|
args=(
|
|
"-f[don't display diagnostic messages]"
|
|
'-v[verbose output]'
|
|
)
|
|
fi
|
|
|
|
_arguments -s -A "-*" : $args \
|
|
': :_file_flags' \
|
|
'*:file:_files "$own"' \
|
|
- opth \
|
|
'-h[act on symlinks]' \
|
|
- optR \
|
|
'-R[recurse directories]' \
|
|
'(-L -P)-H[follow symlinks on the command line (specify with -R)]' \
|
|
'(-H -P)-L[follow all symlinks (specify with -R)]' \
|
|
'(-L -H)-P[do not follow symlinks (specify with -R)]'
|