interdimensionalmeme to Linux · 16 hours agozcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !message-squaremessage-square15fedilinkarrow-up164arrow-down16file-text
arrow-up158arrow-down1message-squarezcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !interdimensionalmeme to Linux · 16 hours agomessage-square15fedilinkfile-text
minus-squareinterdimensionalmemeOPlinkfedilinkarrow-up2·3 hours agoWhere is it? I can’t seen to find it https://github.com/zCat?tab=repositories
minus-squareSteveTech@programming.devlinkfedilinkEnglisharrow-up3·edit-22 hours 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.
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.