summaryrefslogtreecommitdiff
path: root/completions/rrdtool
blob: dcb9ce67ac9e12567eb8a95f86b0a04469db94e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# bash completion for rrdtool                              -*- shell-script -*-

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

    if ((${#words[@]} == 2)); then
        COMPREPLY=($(compgen -W 'create update updatev graph dump restore
            last lastupdate first info fetch tune resize xport' -- "$cur"))
    else
        _filedir rrd
    fi
} &&
    complete -F _rrdtool rrdtool

# ex: filetype=sh