mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-05 11:01:13 +02:00
49500: new lsns completion
This commit is contained in:
parent
0f1e4d8e78
commit
f414456b7a
2 changed files with 22 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2021-10-23 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
||||||
|
* 49500: Completion/Linux/Command/_lsns: new completion
|
||||||
|
|
||||||
2021-10-16 dana <dana@dana.is>
|
2021-10-16 dana <dana@dana.is>
|
||||||
|
|
||||||
* github #79 (tweaked): Xavier Hsinyuan:
|
* github #79 (tweaked): Xavier Hsinyuan:
|
||||||
|
|
18
Completion/Linux/Command/_lsns
Normal file
18
Completion/Linux/Command/_lsns
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
#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'
|
Loading…
Reference in a new issue