summaryrefslogtreecommitdiff
path: root/completions/munindoc
blob: a08399ba3eda593554ef316644b0a90d37818500 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# munindoc completion                                      -*- shell-script -*-

_munindoc()
{
    local cur prev words cword
    _init_completion || return

    COMPREPLY=( $(compgen -W \
        '$(command ls /usr/share/munin/plugins 2>/dev/null)' -- "$cur") )
} &&
complete -F _munindoc munindoc

# ex: filetype=sh