summaryrefslogtreecommitdiffstats
path: root/completions/ypmatch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:18 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:18 +0000
commitf4acb49ea148cdd899f7f29f1591c7bc853c2135 (patch)
treeb62d60873864065d6428a84a119dd8a3c90f1397 /completions/ypmatch
parentAdding upstream version 1:2.11. (diff)
downloadbash-completion-f4acb49ea148cdd899f7f29f1591c7bc853c2135.tar.xz
bash-completion-f4acb49ea148cdd899f7f29f1591c7bc853c2135.zip
Adding upstream version 1:2.12.0.upstream/1%2.12.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'completions/ypmatch')
-rw-r--r--completions/ypmatch15
1 files changed, 6 insertions, 9 deletions
diff --git a/completions/ypmatch b/completions/ypmatch
index 13249f0..db5a233 100644
--- a/completions/ypmatch
+++ b/completions/ypmatch
@@ -1,9 +1,9 @@
# bash completion for yp-tools -*- shell-script -*-
-_ypmatch()
+_comp_cmd_ypmatch()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
local map cmd=${1##*/}
@@ -12,15 +12,12 @@ _ypmatch()
if [[ $cmd == ypmatch && $cword -eq 1 && ${#words[@]} -eq 3 ]]; then
map=${words[2]}
- COMPREPLY=($(compgen -W '$(ypcat $map 2>/dev/null | \
- cut -d':' -f 1)' -- "$cur"))
+ _comp_compgen_split -- "$(ypcat "$map" 2>/dev/null | cut -d':' -f 1)"
else
[[ $cmd == ypmatch && $cword -ne 2 ]] && return
- COMPREPLY=($(compgen -W \
- '$(printf "%s\n" $(ypcat -x 2>/dev/null | \
- cut -d"\"" -f 2))' -- "$cur"))
+ _comp_compgen_split -- "$(ypcat -x 2>/dev/null | cut -d'"' -f 2)"
fi
} &&
- complete -F _ypmatch ypmatch ypcat
+ complete -F _comp_cmd_ypmatch ypmatch ypcat
# ex: filetype=sh