diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2002-11-25 12:08:25 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2002-11-25 12:08:25 +0000 |
commit | 188259446513aedc193d887cd974f1646371a0c1 (patch) | |
tree | 332c4dce44ff2d432d37a13dbb52853055d86954 /Completion | |
parent | f489f7b24e6b80abd95502dc57e2a1dea500005a (diff) | |
download | zsh-188259446513aedc193d887cd974f1646371a0c1.tar.gz zsh-188259446513aedc193d887cd974f1646371a0c1.tar.xz zsh-188259446513aedc193d887cd974f1646371a0c1.zip |
17961: Armin Wolfermann: add OpenBSD support in _sysctl
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_sysctl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_sysctl b/Completion/Unix/Command/_sysctl index 2198d1b8a..b42c0bb23 100644 --- a/Completion/Unix/Command/_sysctl +++ b/Completion/Unix/Command/_sysctl @@ -33,4 +33,13 @@ case $OSTYPE in '(-n -w -p -a *)-A[list all in table form]' \ '(-n -p -a -A)*:sysctl variable:_files -W /proc/sys' ;; + openbsd*) + : ${(A)_cache_sysctlvars:=${${(f)"$(sysctl -a)"}%% *}} + _arguments -s -A "-*" \ + '(-w -A *)-a[list all string and integer variables]' \ + '(-w -a *)-A[list all known variables]' \ + '(-w)-n[show only values]' \ + '(-a -A -n)-w[write variable]' \ + '(-a -A)*:sysctl variable:_multi_parts ${words[(r)-w]:+-S=} -i . _cache_sysctlvars' + ;; esac |