diff options
Diffstat (limited to '')
-rw-r--r-- | completions/rrdtool | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/completions/rrdtool b/completions/rrdtool new file mode 100644 index 0000000..dcb9ce6 --- /dev/null +++ b/completions/rrdtool @@ -0,0 +1,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 |