summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2010-01-18 20:32:03 +0200
committerVille Skyttä <ville.skytta@iki.fi>2010-01-18 20:32:03 +0200
commit0b6baead5c270c362db3c84eb25fb46b5285827f (patch)
tree169ccbd082c7b1ee63f5ec095dd3dce03fae5f57 /contrib
parent08e746ea109366cd1ba6b52cb02e95c094726876 (diff)
downloadbash-completion-0b6baead5c270c362db3c84eb25fb46b5285827f.tar.gz
Parse pigz options from pigz, not gzip, option completion improvements.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/gzip11
1 files changed, 9 insertions, 2 deletions
diff --git a/contrib/gzip b/contrib/gzip
index 94f8c9df..08243857 100644
--- a/contrib/gzip
+++ b/contrib/gzip
@@ -8,10 +8,17 @@ _gzip()
COMPREPLY=()
cur=`_get_cword`
prev=${COMP_WORDS[COMP_CWORD-1]}
- helpopts=`_parse_help gzip`
+ helpopts=`_parse_help ${COMP_WORDS[0]}`
+
+ case $prev in
+ -b|--blocksize|-p|--processes|-S|--suffix|-h|--help|-V|--version)
+ return 0
+ ;;
+ esac
if [[ "$cur" == -* ]]; then
- COMPREPLY=( $( compgen -W "$helpopts -2 -3 -4 -5 -6 -7 -8" -- "$cur" ) )
+ COMPREPLY=( $( compgen -W "$helpopts -1 -2 -3 -4 -5 -6 -7 -8 -9" \
+ -- "$cur" ) )
return 0
fi