mirror of
https://github.com/sharkdp/bat.git
synced 2025-03-13 14:18:35 +00:00
This relies on bsdcat from archive-tools, which supports more formats than just gzip or, failing that, falls back to gunzip -c with a warning. Previously[1], @sharkdp stated that bat would not support compressed files, but would be open in implementing a wrapper. There was another implementation proposed elsewhere[2], but it seems overengineered to me. [1] https://github.com/sharkdp/bat/issues/642#issuecomment-526816644 [2] https://github.com/sharkdp/bat/issues/237#issuecomment-617079288
13 lines
251 B
Bash
Executable File
13 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -u
|
|
# shellcheck disable=SC3040
|
|
(set -o pipefail 2> /dev/null) && set -o pipefail
|
|
|
|
cpath="$1"
|
|
# cpath without suffix
|
|
path="$(echo $cpath | sed 's/\.[^.]*$//')"
|
|
|
|
( bsdcat "$path" || gunzip -c "$path" ) | batcat --file-name "$path"
|