summaryrefslogtreecommitdiff
path: root/completion/dmidecode.bash
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2024-06-30 20:02:05 +0200
committerJörg Frings-Fürst <debian@jff.email>2024-06-30 20:02:05 +0200
commite8704754ec72eb19159d167d79a1d89a899ea632 (patch)
tree45fa8b58371e9f40cd1fbd169cbd497eb300a2a1 /completion/dmidecode.bash
parent25d9e648d730c649a9769b04dc0a246fbc9680cb (diff)
parentc9aac994d65f7bcc3659e3219d6729a24c803fcf (diff)
Update upstream source from tag 'upstream/3.6'
Update to upstream version '3.6' with Debian dir ea85aaa693054009bb715a20c2cafaee53e5bb7a
Diffstat (limited to 'completion/dmidecode.bash')
-rw-r--r--completion/dmidecode.bash60
1 files changed, 60 insertions, 0 deletions
diff --git a/completion/dmidecode.bash b/completion/dmidecode.bash
new file mode 100644
index 0000000..200d6cd
--- /dev/null
+++ b/completion/dmidecode.bash
@@ -0,0 +1,60 @@
+# bash completion for dmidecode -*- shell-script -*-
+
+_comp_cmd_dmidecode() {
+ local cur prev
+ COMPREPLY=()
+ cur=${COMP_WORDS[COMP_CWORD]}
+ prev=${COMP_WORDS[COMP_CWORD - 1]}
+
+ case $prev in
+ -d | --dev-mem | --dump-bin | --from-dump)
+ if [[ $prev == -d || $prev == --dev-mem ]]; then
+ : "${cur:=/dev/}"
+ fi
+ local IFS=$'\n'
+ compopt -o filenames
+ COMPREPLY=($(compgen -f -- "$cur"))
+ return 0
+ ;;
+ -s | --string)
+ COMPREPLY=($(compgen -W '$("$1" --list-strings)' -- "$cur"))
+ return 0
+ ;;
+ -t | --type)
+ COMPREPLY=($(compgen -W '$("$1" --list-types)' -- "$cur"))
+ return 0
+ ;;
+ --dump-bin | --from-dump)
+ local IFS=$'\n'
+ compopt -o filenames
+ COMPREPLY=($(compgen -f -- "$cur"))
+ return 0
+ ;;
+ -[hVH] | --help | --version | --handle | --oem-string)
+ return 0
+ ;;
+ esac
+
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '
+ --dev-mem
+ --help
+ --quiet
+ --string
+ --list-strings
+ --type
+ --list-types
+ --handle
+ --dump
+ --dump-bin
+ --from-dump
+ --no-sysfs
+ --oem-string
+ --version
+ ' -- "$cur"))
+ return 0
+ fi
+
+} && complete -F _comp_cmd_dmidecode dmidecode
+
+# ex: filetype=sh