summaryrefslogtreecommitdiff
path: root/completions/hddtemp
diff options
context:
space:
mode:
Diffstat (limited to 'completions/hddtemp')
-rw-r--r--completions/hddtemp16
1 files changed, 8 insertions, 8 deletions
diff --git a/completions/hddtemp b/completions/hddtemp
index b7487cc9..7b95f0ee 100644
--- a/completions/hddtemp
+++ b/completions/hddtemp
@@ -6,19 +6,19 @@ _hddtemp()
_init_completion -s || return
case $prev in
- --file|-!(-*)f)
+ --file | -!(-*)f)
_filedir db
return
;;
- --listen|-!(-*)l)
+ --listen | -!(-*)l)
_ip_addresses
return
;;
- --unit|-!(-*)u)
- COMPREPLY=( $(compgen -W 'C F' -- "$cur") )
+ --unit | -!(-*)u)
+ COMPREPLY=($(compgen -W 'C F' -- "$cur"))
return
;;
- --port|--separator|--syslog|--version|--help|-!(-*)[psSvh?])
+ --port | --separator | --syslog | --version | --help | -!(-*)[psSvh?])
return
;;
esac
@@ -26,13 +26,13 @@ _hddtemp()
$split && return
if [[ $cur == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1") --help' -- "$cur") )
- [[ $COMPREPLY == *= ]] && compopt -o nospace
+ COMPREPLY=($(compgen -W '$(_parse_help "$1") --help' -- "$cur"))
+ [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
else
cur=${cur:=/dev/}
_filedir
fi
} &&
-complete -F _hddtemp hddtemp
+ complete -F _hddtemp hddtemp
# ex: filetype=sh