mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-01 21:51:40 +02:00
* 20942: Completion/Unix/Command/_showmount: completion for showmount command.
This commit is contained in:
parent
6d5ff606f5
commit
76640bfc44
2 changed files with 13 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
|||
2005-03-07 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 20942: Completion/Unix/Command/_showmount: completion for
|
||||
showmount command.
|
||||
|
||||
* 20941: Completion/Unix/Command/_mii-tool: completion for mii-tool
|
||||
command.
|
||||
|
||||
|
|
10
Completion/Unix/Command/_showmount
Normal file
10
Completion/Unix/Command/_showmount
Normal file
|
@ -0,0 +1,10 @@
|
|||
#compdef showmount
|
||||
|
||||
_arguments \
|
||||
'(-a --all)'{-a,--all}'[list both hostname and mounted dir in host:dir format]' \
|
||||
'(-d --directories)'{-d,--directories}'[list only the directories mounted by some client]' \
|
||||
'(-e --exports)'{-e,--exports}'[show server export list]' \
|
||||
'(-h --help)'{-h,--help}'[help]' \
|
||||
'(-v --version)'{-v,--version}'[version]' \
|
||||
'--no-headers[suppress descriptive headers from output]' \
|
||||
':host:_hosts'
|
Loading…
Reference in a new issue