mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-03-12 04:36:22 -07:00
18 lines
436 B
Bash
18 lines
436 B
Bash
# 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
|