| Server IP : 172.67.191.97 / Your IP : 104.23.197.209 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/bash-completion/completions/ |
Upload File : |
# perltidy(1) completion -*- shell-script -*-
_comp_cmd_perltidy()
{
local cur prev words cword comp_args
_comp_initialize -n = -- "$@" || return
case $prev in
-h | --help)
return
;;
-o)
_comp_compgen_filedir
return
;;
esac
case $cur in
-pro=* | --profile=*)
_comp_compgen -c "${cur#*=}" filedir
return
;;
-ole=* | --output-line-ending=*)
_comp_compgen -c "${cur#*=}" -- -W 'dos win mac unix'
return
;;
-bt=* | --brace-tightness=* | -pt=* | --paren-tightness=* | \
-sbt=* | --square-bracket-tightness=* | \
-bvt=* | --brace-vertical-tightness=* | \
-pvt=* | --paren-vertical-tightness=* | \
-sbvt=* | --square-bracket-vertical-tightness=* | \
-bvtc=* | --brace-vertical-tightness-closing=* | \
-pvtc=* | --paren-vertical-tightness-closing=* | \
-sbvtc=* | --square-bracket-vertical-tightness-closing=* | \
-cti=* | --closing-token-indentation=* | \
-kbl=* | --keep-old-blank-lines=* | \
-vt=* | --vertical-tightness=*)
_comp_compgen -c "${cur#*=}" -- -W '0 1 2'
return
;;
-vtc=* | --vertical-tightness-closing=*)
_comp_compgen -c "${cur#*=}" -- -W '0 1'
return
;;
-cab=* | --comma-arrow-breakpoints=*)
_comp_compgen -c "${cur#*=}" -- -W '0 1 2 3'
return
;;
-*=)
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_help
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
else
_comp_compgen_filedir 'p[lm]|t'
fi
} &&
complete -F _comp_cmd_perltidy perltidy
# ex: filetype=sh