interdimensionalmeme@lemmy.ml to Linux@lemmy.ml · 8 days agozcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !message-squaremessage-square30fedilinkarrow-up182arrow-down112file-text
arrow-up170arrow-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 · 8 days agomessage-square30fedilinkfile-text
minus-squarehuf [he/him]@hexbear.netlinkfedilinkEnglisharrow-up1·7 days agoin that case, i’d prefer a ~/bin/zcat with the contents #!/bin/sh exec gzip -cdf "$@" this way, it’s exec’able, unlike an alias or shell function.
in that case, i’d prefer a
~/bin/zcat
with the contents#!/bin/sh exec gzip -cdf "$@"
this way, it’s exec’able, unlike an alias or shell function.