summaryrefslogtreecommitdiff
path: root/completions/chage
diff options
context:
space:
mode:
Diffstat (limited to 'completions/chage')
-rw-r--r--completions/chage14
1 files changed, 7 insertions, 7 deletions
diff --git a/completions/chage b/completions/chage
index cb9d8fcf..fcf87cd4 100644
--- a/completions/chage
+++ b/completions/chage
@@ -6,11 +6,11 @@ _chage()
_init_completion -s || return
case $prev in
- --lastday|--expiredate|--help|--inactive|--mindays|--maxdays|\
- --warndays|-!(-*)[dEhImMW])
+ --lastday | --expiredate | --help | --inactive | --mindays | --maxdays | \
+ --warndays | -!(-*)[dEhImMW])
return
;;
- --root|-!(-*)R)
+ --root | -!(-*)R)
_filedir -d
return
;;
@@ -18,13 +18,13 @@ _chage()
$split && return
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
return
fi
- COMPREPLY=( $(compgen -u -- "$cur") )
+ COMPREPLY=($(compgen -u -- "$cur"))
} &&
-complete -F _chage chage
+ complete -F _chage chage
# ex: filetype=sh