@[email protected] to [email protected] • 1 month agozcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !message-square29fedilinkarrow-up169arrow-down112file-text
arrow-up157arrow-down1message-squarezcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !@[email protected] to [email protected] • 1 month agomessage-square29fedilinkfile-text
minus-square@Treczokslink-4•1 month agoWell, the source code is available. Fix it if you need it that bad.
minus-square@[email protected]linkfedilink10•1 month agoMan, I have a minor inconvenience. installs Gentoo
minus-square@[email protected]OPlinkfedilink1•1 month agoWhere is it? I can’t seen to find it https://github.com/zCat?tab=repositories
minus-square@[email protected]linkfedilinkEnglish8•edit-21 month agoIt’s part of GNU Gzip, and zcat is basically just a shell script that runs exec gzip -cd "$@" meaning you can actually just do cat /usr/bin/zcat to get the source.
Well, the source code is available. Fix it if you need it that bad.
Man, I have a minor inconvenience.
installs Gentoo
Where is it? I can’t seen to find it https://github.com/zCat?tab=repositories
It’s part of GNU Gzip, and zcat is basically just a shell script that runs
exec gzip -cd "$@"
meaning you can actually just docat /usr/bin/zcat
to get the source.Or even
zcat -f /usr/bin/zcat