diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-06-30 20:02:05 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-06-30 20:02:05 +0200 |
commit | c9aac994d65f7bcc3659e3219d6729a24c803fcf (patch) | |
tree | 392bee74d0652cac2c3677da3268bedc14791293 /completion/ownership.bash | |
parent | 67edb6d3e91421bc50fd51baa1f4ce214efb98c7 (diff) |
New upstream version 3.6upstream/3.6upstream
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 |