interdimensionalmeme@lemmy.ml to Linux@lemmy.ml · 4 days agozcat shouldn't error out if you try to zcat an uncompressed file, it should just output the damned file !message-squaremessage-square30fedilinkarrow-up180arrow-down111file-text
arrow-up169arrow-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 · 4 days agomessage-square30fedilinkfile-text
minus-squarehuf [he/him]@hexbear.netlinkfedilinkEnglisharrow-up1·3 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.