Analizo
view release on metacpan or search on metacpan
share/bash-completion/analizo view on Meta::CPAN
_analizo_help() {
local options
options="-h -v --usage --help --version"
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${options}" -- ${cur}))
else
COMPREPLY=( $(compgen -f ${cur}) )
fi
return 0
}
_analizo_graph() {
local options
options="-t -m -c -e -o -h -u --omit --cluster --modules --extractor --output --help"
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${options}" -- ${cur}))
else
COMPREPLY=( $(compgen -d ${cur}) )
fi
return 0
}
_analizo_files-graph() {
local options
options="-e -o -h --extractor --output --help --usage"
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${options}" -- ${cur}))
else
COMPREPLY=( $(compgen -d ${cur}) )
fi
return 0
}
_analizo_metrics() {
local options
options="-e -h -l -o -g -n -d --extractor --help --list --output --global-only --language --exclude --usage"
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${options}" -- ${cur}))
else
COMPREPLY=( $(compgen -d ${cur}) )
fi
return 0
}
_analizo_metrics-batch() {
local options
options="-p -h -o -q --parallel --help --output --quiet --usage"
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${options}" -- ${cur}))
else
COMPREPLY=( $(compgen -d ${cur}) )
fi
return 0
}
_analizo_metrics-history() {
local options
options="-p -n -o -f -l -b -h -u --parallel --language --output --format --list --progressbar --help --usage"
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${options}" -- ${cur}))
else
COMPREPLY=( $(compgen -d ${cur}) )
fi
return 0
}
_analizo_tree-evolution() {
local options
options="-l -h --language --help --usage"
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${options}" -- ${cur}))
else
COMPREPLY=( $(compgen -d ${cur}) )
fi
return 0
}
_analizo() {
local cur prev opts tools
COMPREPLY=()
_get_comp_words_by_ref cur prev
opts="-v -h --version --help --usage"
tools="help files-graph graph metrics metrics-batch metrics-history tree-evolution"
case "${prev}" in
analizo)
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}))
return 0
else
COMPREPLY=( $(compgen -W "${tools}" -- ${cur}) )
return 0
fi
;;
*)
( run in 0.785 second using v1.01-cache-2.11-cpan-5b529ec07f3 )