| Server IP : 162.214.67.83 / Your IP : 216.73.217.31 Web Server : Apache System : Linux dedi-13542965.clustter.com.br 5.14.0-687.20.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Jun 30 06:22:49 EDT 2026 x86_64 User : jforte ( 1063) PHP Version : 8.2.32 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 : |
# nc(1) completion -*- shell-script -*-
_nc()
{
local cur prev words cword
_init_completion -n : || return
case $prev in
-*[hIiMmOPpqVWw])
return
;;
-*s)
if [[ ${words[*]} == *-6* ]]; then
_ip_addresses -6
__ltrim_colon_completions "$cur"
else
_ip_addresses
fi
return
;;
-*T)
COMPREPLY=($(compgen -W 'critical inetcontrol lowcost lowdelay
netcontrol throughput reliability ef af{11..43} cs{0..7}' \
-- "$cur"))
return
;;
-*X)
COMPREPLY=($(compgen -W '4 5 connect' -- "$cur"))
return
;;
-*x)
_known_hosts_real -- "$cur"
return
;;
esac
if [[ $cur == -* ]]; then
COMPREPLY=($(compgen -W '$(_parse_help "$1" -h)' -- "$cur"))
return
fi
# Complete 1st non-option arg only
local args
_count_args "" "-*[IiMmOPpqsTVWwXx]"
((args == 1)) || return
_known_hosts_real -- "$cur"
} &&
complete -F _nc nc
# ex: filetype=sh