summaryrefslogtreecommitdiff
path: root/completions/getconf
diff options
context:
space:
mode:
Diffstat (limited to 'completions/getconf')
-rw-r--r--completions/getconf14
1 files changed, 8 insertions, 6 deletions
diff --git a/completions/getconf b/completions/getconf
index 80be667c..6e86e9de 100644
--- a/completions/getconf
+++ b/completions/getconf
@@ -11,9 +11,9 @@ _getconf()
return
;;
-v)
- COMPREPLY=( $( compgen -W \
- '$( "$1" -a 2>/dev/null | awk "{ print \$1 }" )' -- \
- "${cur:-POSIX_V}" ) )
+ COMPREPLY=( $(compgen -W \
+ '$("$1" -a 2>/dev/null | awk "{ print \$1 }")' -- \
+ "${cur:-POSIX_V}") )
return
;;
esac
@@ -21,10 +21,12 @@ _getconf()
if [[ $prev == PATH_MAX ]]; then # TODO more path vars, better handling
_filedir
elif [[ $cur == -* ]]; then
- COMPREPLY=( $( compgen -W '-a -v' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '-a -v' -- "$cur") )
else
- COMPREPLY=( $( compgen -W \
- '$( "$1" -a 2>/dev/null | awk "{ print \$1 }" )' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W \
+ '$("$1" -a 2>/dev/null | awk "{ print \$1 }")' -- "$cur") )
fi
} &&
complete -F _getconf getconf
+
+# ex: filetype=sh