diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_showmount | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_showmount b/Completion/Unix/Command/_showmount new file mode 100644 index 000000000..913091198 --- /dev/null +++ b/Completion/Unix/Command/_showmount @@ -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' |