diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:28:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 10:28:19 +0000 |
commit | f6dd7bd8be90e179acfbb524258b0639ad969ab4 (patch) | |
tree | 45fa8b58371e9f40cd1fbd169cbd497eb300a2a1 /completion/ownership.bash | |
parent | Adding debian version 3.5-3. (diff) | |
download | dmidecode-f6dd7bd8be90e179acfbb524258b0639ad969ab4.tar.xz dmidecode-f6dd7bd8be90e179acfbb524258b0639ad969ab4.zip |
Merging upstream version 3.6.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'completion/ownership.bash')
-rw-r--r-- | completion/ownership.bash | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/completion/ownership.bash b/completion/ownership.bash new file mode 100644 index 0000000..6a25d29 --- /dev/null +++ b/completion/ownership.bash @@ -0,0 +1,33 @@ +# bash completion for ownership -*- shell-script -*- + +_comp_cmd_ownership() { + local cur prev + COMPREPLY=() + cur=${COMP_WORDS[COMP_CWORD]} + prev=${COMP_WORDS[COMP_CWORD - 1]} + + case $prev in + -d | --dev-mem) + : "${cur:=/dev/}" + local IFS=$'\n' + compopt -o filenames + COMPREPLY=($(compgen -f -- "$cur")) + return 0 + ;; + -[hV] | --help | --version) + return 0 + ;; + esac + + if [[ $cur == -* ]]; then + COMPREPLY=($(compgen -W ' + --dev-mem + --help + --version + ' -- "$cur")) + return 0 + fi + +} && complete -F _comp_cmd_ownership ownership + +# ex: filetype=sh |