summaryrefslogtreecommitdiff
path: root/completions/nc
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:13 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:13 -0300
commit95623d39d6029ba78ec96ad5ea08e9ac12629b91 (patch)
treeea0fe36eb5e6f40e0a1f765d44c4b0c0b2bfb089 /completions/nc
parent019f3cc463db63abc6460f97deb488deec43840b (diff)
downloadbash-completion-95623d39d6029ba78ec96ad5ea08e9ac12629b91.tar.gz
New upstream version 2.11upstream/2.11upstream
Diffstat (limited to 'completions/nc')
-rw-r--r--completions/nc19
1 files changed, 10 insertions, 9 deletions
diff --git a/completions/nc b/completions/nc
index 0ba61808..6fb09943 100644
--- a/completions/nc
+++ b/completions/nc
@@ -10,7 +10,7 @@ _nc()
return
;;
-*s)
- if [[ "${words[*]}" == *-6* ]]; then
+ if [[ ${words[*]} == *-6* ]]; then
_ip_addresses -6
__ltrim_colon_completions "$cur"
else
@@ -19,13 +19,13 @@ _nc()
return
;;
-*T)
- COMPREPLY=( $(compgen -W 'critical inetcontrol lowcost lowdelay
+ COMPREPLY=($(compgen -W 'critical inetcontrol lowcost lowdelay
netcontrol throughput reliability ef af{11..43} cs{0..7}' \
- -- "$cur") )
+ -- "$cur"))
return
;;
-*X)
- COMPREPLY=( $(compgen -W '4 5 connect' -- "$cur") )
+ COMPREPLY=($(compgen -W '4 5 connect' -- "$cur"))
return
;;
-*x)
@@ -34,17 +34,18 @@ _nc()
;;
esac
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1" -h)' -- "$cur") )
+ 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 -eq 1 ]] || return
+ local args
+ _count_args "" "-*[IiMmOPpqsTVWwXx]"
+ ((args == 1)) || return
_known_hosts_real -- "$cur"
} &&
-complete -F _nc nc
+ complete -F _nc nc
# ex: filetype=sh