mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
c2f6c6c1d2
darcs-hash:20060301165347-ac50b-3df9feec60dd9860e0988396d10b550a501f6802.gz
15 lines
746 B
Fish
15 lines
746 B
Fish
complete -c bunzip2 -x -a "(
|
|
__fish_complete_suffix (commandline -ct) .bz 'Compressed file'
|
|
__fish_complete_suffix (commandline -ct) .bz2 'Compressed file'
|
|
__fish_complete_suffix (commandline -ct) .tbz 'Compressed archive'
|
|
__fish_complete_suffix (commandline -ct) .tbz2 'Compressed archive'
|
|
)
|
|
"
|
|
|
|
complete -c bunzip2 -s c -l stdout -d (N_ "Decompress to stdout")
|
|
complete -c bunzip2 -s f -l force -d (N_ "Overwrite")
|
|
complete -c bunzip2 -s k -l keep -d (N_ "Do not overwrite")
|
|
complete -c bunzip2 -s s -l small -d (N_ "Reduce memory usage")
|
|
complete -c bunzip2 -s v -l verbose -d (N_ "Print compression ratios")
|
|
complete -c bunzip2 -s L -l license -d (N_ "Print license")
|
|
complete -c bunzip2 -s V -l version -d (N_ "Display version and exit")
|