Files
RedBear-OS/recipes/shells/zsh/source/Doc/Zsh/mod_cap.yo
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
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.
2026-05-14 10:55:53 +01:00

30 lines
1.0 KiB
Plaintext

COMMENT(!MOD!zsh/cap
Builtins for manipulating POSIX.1e (POSIX.6) capability (privilege) sets.
!MOD!)
The tt(zsh/cap) module is used for manipulating POSIX.1e (POSIX.6) capability
sets. If the operating system does not support this interface, the
builtins defined by this module will do nothing.
The builtins in this module are:
startitem()
findex(cap)
cindex(capabilities, setting)
item(tt(cap) [ var(capabilities) ])(
Change the shell's process capability sets to the specified var(capabilities),
otherwise display the shell's current capabilities.
)
findex(getcap)
cindex(capabilities, getting from files)
item(tt(getcap) var(filename) ...)(
This is a built-in implementation of the POSIX standard utility. It displays
the capability sets on each specified var(filename).
)
findex(setcap)
cindex(capabilities, setting on files)
item(tt(setcap) var(capabilities) var(filename) ...)(
This is a built-in implementation of the POSIX standard utility. It sets
the capability sets on each specified var(filename) to the specified
var(capabilities).
)
enditem()