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