summaryrefslogtreecommitdiff
path: root/completions/munindoc
blob: f603d87b6a1a544ff888145b415699787e794d6e (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