diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2008-07-21 19:15:22 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-07-21 19:15:22 +0000 |
commit | 5b29fedad850299950195a1878fe4923778f9dcc (patch) | |
tree | 100a2decba0f1b6f8c4ed1b866bddd5f2ff57019 /Completion/Solaris/Command/_svcprop | |
parent | 2d2d341161ca6699a6efd6981c3a9fd7fe52e6d6 (diff) | |
download | zsh-5b29fedad850299950195a1878fe4923778f9dcc.tar.gz zsh-5b29fedad850299950195a1878fe4923778f9dcc.tar.xz zsh-5b29fedad850299950195a1878fe4923778f9dcc.zip |
25324: Danek Duvall: some Solaris and more general completions
Diffstat (limited to 'Completion/Solaris/Command/_svcprop')
-rw-r--r-- | Completion/Solaris/Command/_svcprop | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Completion/Solaris/Command/_svcprop b/Completion/Solaris/Command/_svcprop new file mode 100644 index 000000000..aa166808a --- /dev/null +++ b/Completion/Solaris/Command/_svcprop @@ -0,0 +1,23 @@ +#compdef svcprop + +_svcprop() { + _arguments -s \ + '-f[Designate properties by their FMRI]' \ + '-q[Quiet]' \ + '-t[Use multi-property output format]' \ + '-v[Verbose]' \ + - set1 \ + '-w[Waits for the selected property or property group to change]' \ + '-p[Prints values of named property or property group]' \ + ':FMRI:_svcs_fmri -i' \ + - set2 \ + '(-c -s)-C[Retrieve properties without composition]' \ + '(-C -s)-c[Retrieve properties with composition]' \ + '(-c -C)-s[Retrieve properties from snapshot]:snapshot:' \ + '*-p[Prints values of named property or property group]' \ + '*:FMRI:_svcs_fmri -i' +} + +_svcprop "$@" + +# vi:tw=0 |