summaryrefslogtreecommitdiffstats
path: root/completions/dd
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/dd
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/dd')
-rw-r--r--completions/dd33
1 files changed, 15 insertions, 18 deletions
diff --git a/completions/dd b/completions/dd
index 04d876a..a9985b1 100644
--- a/completions/dd
+++ b/completions/dd
@@ -1,42 +1,39 @@
# bash completion for dd -*- shell-script -*-
-_dd()
+_comp_cmd_dd()
{
- local cur prev words cword
- _init_completion -n = || return
+ local cur prev words cword comp_args
+ _comp_initialize -n = -- "$@" || return
case $cur in
if=* | of=*)
- cur=${cur#*=}
- _filedir
+ _comp_compgen -c "${cur#*=}" filedir
return
;;
conv=*)
- cur=${cur#*=}
- COMPREPLY=($(compgen -W 'ascii ebcdic ibm block unblock lcase
- ucase sparse swab sync excl nocreat notrunc noerror fdatasync
- fsync' -- "$cur"))
+ _comp_compgen -c "${cur#*=}" -- -W 'ascii ebcdic ibm block unblock
+ lcase ucase sparse swab sync excl nocreat notrunc noerror
+ fdatasync fsync'
return
;;
iflag=* | oflag=*)
- cur=${cur#*=}
- COMPREPLY=($(compgen -W 'append direct directory dsync sync
- fullblock nonblock noatime nocache noctty nofollow count_bytes
- skip_bytes seek_bytes' -- "$cur"))
+ _comp_compgen -c "${cur#*=}" -- -W 'append direct directory dsync
+ sync fullblock nonblock noatime nocache noctty nofollow
+ count_bytes skip_bytes seek_bytes'
return
;;
status=*)
cur=${cur#*=}
- COMPREPLY=($(compgen -W 'none noxfer progress' -- "$cur"))
+ _comp_compgen -- -W 'none noxfer progress'
return
;;
esac
- COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur")
- $(compgen -W 'bs cbs conv count ibs if iflag obs of oflag
- seek skip status' -S '=' -- "$cur"))
+ _comp_compgen_help
+ _comp_compgen -a -- -W 'bs cbs conv count ibs if iflag obs of oflag
+ seek skip status' -S '='
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
} &&
- complete -F _dd dd
+ complete -F _comp_cmd_dd dd
# ex: filetype=sh