summaryrefslogtreecommitdiff
path: root/completions/mtx
diff options
context:
space:
mode:
Diffstat (limited to 'completions/mtx')
-rw-r--r--completions/mtx6
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/mtx b/completions/mtx
index c52c6173..9266687c 100644
--- a/completions/mtx
+++ b/completions/mtx
@@ -23,10 +23,10 @@ _mtx()
if [[ $cword -gt 1 ]]; then
case $prev in
load)
- COMPREPLY=( $( compgen -W "$tapes" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$tapes" -- "$cur") )
;;
unload|first|last|next)
- COMPREPLY=( $( compgen -W "$drives" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$drives" -- "$cur") )
;;
-f)
true
@@ -36,7 +36,7 @@ _mtx()
;;
esac
else
- COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$options" -- "$cur") )
fi
} &&
complete -F _mtx mtx