| Server IP : 74.208.236.52 / Your IP : 216.73.216.240 Web Server : Apache System : Linux infong527 4.4.400-icpu-115 #2 SMP Mon Jul 6 08:15:05 UTC 2026 x86_64 User : u44043973 ( 5404757) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /kunden/usr/share/zsh/functions/Completion/BSD/ |
Upload File : |
#compdef jls
local curcontext=$curcontext state state_descr line
typeset -A opt_args
_arguments -C -s -w -A '-*' : \
'-d[include diying jails]' \
'-h[print header line]' \
"-N[print jail's name instead of numeric ID]" \
'-n[print parameters in ``name=value'\'\'' format]' \
'-q[quote parameter value when it contains whitespace, quotes or empty string]' \
'-s[print parameters suitable for passing to jail(8)]' \
'-v[print a multiple-line summary per jail]' \
'-j[the jid or name of the jail to list]:jail:_jails' \
'*: :->parameters'
if [[ $state == parameters ]]; then
_values -w -S ' ' 'jail parameter' ${${${(f)"$(sysctl -N security.jail.param)"}%.#}##security.jail.param.#}
fi