summaryrefslogtreecommitdiff
path: root/completions/lpq
diff options
context:
space:
mode:
Diffstat (limited to 'completions/lpq')
-rw-r--r--completions/lpq6
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/lpq b/completions/lpq
index b02705af..a1223268 100644
--- a/completions/lpq
+++ b/completions/lpq
@@ -7,17 +7,17 @@ _lpq()
case $prev in
-P)
- COMPREPLY=( $( compgen -W "$( lpstat -a 2>/dev/null | cut -d' ' -f1 )" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$(lpstat -a 2>/dev/null | cut -d' ' -f1)" -- "$cur") )
return
;;
-U)
- COMPREPLY=( $( compgen -u -- "$cur" ) )
+ COMPREPLY=( $(compgen -u -- "$cur") )
return
;;
esac
if [[ "$cur" == - ]]; then
- COMPREPLY=( $( compgen -W '-E -P -U -a -h -l' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '-E -P -U -a -h -l' -- "$cur") )
return
fi