interdimensionalmeme@lemmy.ml to Linux@lemmy.ml · 18 hours agozcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !message-squaremessage-square16fedilinkarrow-up160arrow-down15file-text
arrow-up155arrow-down1message-squarezcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !interdimensionalmeme@lemmy.ml to Linux@lemmy.ml · 18 hours agomessage-square16fedilinkfile-text
minus-squareSteveTechlinkfedilinkEnglisharrow-up4·edit-24 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.
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.