interdimensionalmeme@lemmy.ml to Linux@lemmy.ml · 1 year agozcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !message-squaremessage-square28linkfedilinkarrow-up138arrow-down19file-text
arrow-up129arrow-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 · 1 year agomessage-square28linkfedilinkfile-text
minus-squareSteveTech@programming.devlinkfedilinkEnglisharrow-up6·edit-21 year 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/zcatto get the source.