/usr/share/fish/completions/zcat.fish is in fish-common 2.4.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | complete -c zcat -x -a "(
__fish_complete_suffix .gz
__fish_complete_suffix .tgz
)
"
complete -c zcat -s f -l force --description "Overwrite"
complete -c zcat -s h -l help --description "Display help and exit"
complete -c zcat -s L -l license --description "Print license"
complete -c zcat -s V -l version --description "Display version and exit"
|