📄 munindoc
Tamaño: 320 Bytes
Modificado: 2025-08-05 11:14:04
Permisos: 100644
Ruta:
/usr/share/bash-completion/completions/munindocContenido del Archivo
# munindoc completion -*- shell-script -*-
_munindoc()
{
local cur prev words cword
_init_completion || return
COMPREPLY=($(compgen -W \
'$(command ls /usr/share/munin/plugins 2>/dev/null)' -- "$cur"))
} &&
complete -F _munindoc munindoc
# ex: filetype=sh