interdimensionalmeme to Linux · 1 month agozcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !message-squaremessage-square32fedilinkarrow-up182arrow-down111file-text
arrow-up171arrow-down1message-squarezcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !interdimensionalmeme to Linux · 1 month agomessage-square32fedilinkfile-text
minus-squareSteveTech@programming.devlinkfedilinkEnglisharrow-up8·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.
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