Files
RedBear-OS/recipes/shells/zsh/source/Completion/Linux/Command/_lsns
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

19 lines
961 B
Plaintext

#compdef lsns
local ign
(( $#words > 2 )) && ign='!'
_arguments -s -S \
'(-J --json)'{-J,--json}'[use JSON output format]' \
'(-l --list)'{-l,--list}'[use list format output]' \
'(-n --noheadings)'{-n,--noheadings}"[don't print headings]" \
'(-o --output)'{-o,--output}'[define which output columns to use]:column:_sequence compadd -M "m\:{a-z}={A-Z}" - NS TYPE PATH NPROCS PID PPID COMMAND UID USER NETNSID NSFS' \
'(-p --task)'{-p+,--task=}'[print process namespaces]:process id:_pids' \
'(-r --raw)'{-r,--raw}'[use the raw output format]' \
'(-u --notruncate)'{-u,--notruncate}"[don't truncate text in columns]" \
'(-W --nowrap)'{-W,--nowrap}"[don't use multi-line representation]" \
'(-t --type)'{-t+,--type=}'[filter by namespace type]:namespace type:(mnt net ipc user pid uts cgroup)' \
"$ign(- *)"{-h,--help}'[display usage information]' \
"$ign(- *)"{-V,--version}'[display version information]' \
'*: :_guard "^-*" namespace'