interdimensionalmeme@lemmy.ml to Linux@lemmy.ml · 16 hours agozcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !message-squaremessage-square14fedilinkarrow-up154arrow-down16file-text
arrow-up148arrow-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 · 16 hours agomessage-square14fedilinkfile-text
minus-squareTreczoks@lemmy.worldlinkfedilinkarrow-up2arrow-down4·8 hours agoWell, the source code is available. Fix it if you need it that bad.
minus-squareinterdimensionalmeme@lemmy.mlOPlinkfedilinkarrow-up2·2 hours agoWhere is it? I can’t seen to find it https://github.com/zCat?tab=repositories
minus-squareSteveTech@programming.devlinkfedilinkEnglisharrow-up2·edit-21 hour 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.
minus-squarefool@programming.devlinkfedilinkarrow-up7·7 hours agoMan, I have a minor inconvenience. installs Gentoo
Well, the source code is available. Fix it if you need it that bad.
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.Man, I have a minor inconvenience.
installs Gentoo