| Server IP : 85.112.90.236 / Your IP : 192.168.1.26 Web Server : Apache System : Linux 85-112-90-236.cprapid.com 6.12.0-211.7.3.el10_2.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 12:46:58 EDT 2026 x86_64 User : ftechme ( 1002) PHP Version : 8.2.32 Disable Function : exec,passthru,shell_exec,system 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 -*-
_perltidy()
{
local cur prev words cword
_init_completion -n = || return
case $prev in
-h | --help)
return
;;
-o)
_filedir
return
;;
esac
case $cur in
-pro=*)
cur="${cur#*=}"
_filedir
return
;;
-ole=*)
COMPREPLY=($(compgen -W 'dos win mac unix' -- "${cur#*=}"))
return
;;
-bt=* | -pt=* | -sbt=* | -bvt=* | -pvt=* | -sbvt=* | -bvtc=* | -pvtc=* | -sbvtc=* | \
-cti=* | -kbl=* | -vt=*)
COMPREPLY=($(compgen -W '0 1 2' -- "${cur#*=}"))
return
;;
-vtc=*)
COMPREPLY=($(compgen -W '0 1' -- "${cur#*=}"))
return
;;
-cab=*)
COMPREPLY=($(compgen -W '0 1 2 3' -- "${cur#*=}"))
return
;;
-*=)
return
;;
esac
if [[ $cur == -* ]]; then
COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
else
_filedir 'p[lm]|t'
fi
} &&
complete -F _perltidy perltidy
# ex: filetype=sh