@[email protected] to [email protected] • 19 hours agozcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !message-square16fedilinkarrow-up155arrow-down18file-text
arrow-up147arrow-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] • 19 hours agomessage-square16fedilinkfile-text
minus-square@[email protected]OPlinkfedilink2•6 hours agoWhere is it? I can’t seen to find it https://github.com/zCat?tab=repositories
minus-square@[email protected]linkfedilinkEnglish5•edit-25 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.