summaryrefslogtreecommitdiffstats
path: root/completions/route
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:19 +0000
commit6c09f2a45c5541e9c207d14fc7aa21a4a0066bde (patch)
tree0221189d367bf661f6f9493c4f17a03f0dd4b7d2 /completions/route
parentReleasing progress-linux version 1:2.11-8~progress7.99u1. (diff)
downloadbash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.tar.xz
bash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.zip
Merging upstream version 1:2.12.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'completions/route')
-rw-r--r--completions/route21
1 files changed, 11 insertions, 10 deletions
diff --git a/completions/route b/completions/route
index f9b3196..3351415 100644
--- a/completions/route
+++ b/completions/route
@@ -2,13 +2,13 @@
[[ $OSTYPE == *linux* ]] || return 1
-_route()
+_comp_cmd_route()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
if [[ $prev == dev ]]; then
- _available_interfaces
+ _comp_compgen_available_interfaces
return
fi
@@ -16,15 +16,16 @@ _route()
local opt found i
for opt in add del -host -net netmask metric mss window irtt reject mod \
dyn reinstate dev default gw; do
- found=false
- for ((i = 1; i < ${#words[@]} - 1; i++)); do
- [[ ${words[i]} == "$opt" ]] && found=true && break
+ found=""
+ for ((i = 1; i < cword; i++)); do
+ [[ ${words[i]} == "$opt" ]] && found=set && break
done
- $found || COMPREPLY+=("$opt")
+ [[ $found ]] || COMPREPLY+=("$opt")
done
- COMPREPLY=($(compgen -W '"${COMPREPLY[@]}"' -- "$cur"))
+ ((${#COMPREPLY[@]})) &&
+ _comp_compgen -- -W '"${COMPREPLY[@]}"'
} &&
- complete -F _route route
+ complete -F _comp_cmd_route route
# ex: filetype=sh