15 lines
411 B
Bash
15 lines
411 B
Bash
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
|
|
# ex: ts=8 sw=8 noet filetype=sh
|
|
#
|
|
# bash completion for rrdtool
|
|
|
|
have rrdtool &&
|
|
_rrdtool ()
|
|
{
|
|
cur=`_get_cword`
|
|
COMPREPLY=( $( compgen -W 'create update updatev graph dump \
|
|
restore last lastupdate first info \
|
|
fetch tune resize xport' -- $cur ) )
|
|
} &&
|
|
complete -F _rrdtool rrdtool
|