zcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !
zcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !
There I said it !
You're viewing a single thread.
All Comments
32 comments
Treczoks @lemmy.world Well, the source code is available. Fix it if you need it that bad.
2 6 Replyfool @programming.dev Man, I have a minor inconvenience.
installs Gentoo
10 0 Replyinterdimensionalmeme @lemmy.ml OP Where is it? I can't seen to find it https://github.com/zCat?tab=repositories
2 1 ReplySteveTech @programming.dev 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.8 0 ReplyMorphit @feddit.uk
Or even
zcat -f /usr/bin/zcat
2 0 Reply
32 comments
Scroll to top