mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
9367d4ff71
This does not include checks/function.fish because that currently includes a "; end" in a message that indent would remove, breaking the test.
19 lines
593 B
Fish
19 lines
593 B
Fish
complete -c bunzip2 -x -a "(
|
|
__fish_complete_suffix .tbz
|
|
__fish_complete_suffix .tbz2
|
|
)
|
|
"
|
|
|
|
complete -c bunzip2 -x -a "(
|
|
__fish_complete_suffix .bz
|
|
__fish_complete_suffix .bz2
|
|
)
|
|
"
|
|
|
|
complete -c bunzip2 -s c -l stdout -d "Decompress to stdout"
|
|
complete -c bunzip2 -s f -l force -d Overwrite
|
|
complete -c bunzip2 -s k -l keep -d "Do not overwrite"
|
|
complete -c bunzip2 -s s -l small -d "Reduce memory usage"
|
|
complete -c bunzip2 -s v -l verbose -d "Print compression ratios"
|
|
complete -c bunzip2 -s L -l license -d "Print license"
|
|
complete -c bunzip2 -s V -l version -d "Display version and exit"
|