1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
# munin-run completion -*- shell-script -*-
_comp_cmd_munin_run()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
case $prev in
--config | --sconffile)
_comp_compgen_filedir
return
;;
--servicedir | --sconfdir)
_comp_compgen_filedir -d
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_help
else
_comp_compgen_split -- "$(command ls /etc/munin/plugins 2>/dev/null)"
fi
} &&
complete -F _comp_cmd_munin_run munin-run
# ex: filetype=sh
|