#Km91#@sh.itjust.works to linuxmemes@lemmy.world · 7 days agoRulelemmy.imagisphe.reimagemessage-square129linkfedilinkarrow-up1483arrow-down118
arrow-up1465arrow-down1imageRulelemmy.imagisphe.re#Km91#@sh.itjust.works to linuxmemes@lemmy.world · 7 days agomessage-square129linkfedilink
minus-squareboonhet@sopuli.xyzlinkfedilinkarrow-up4arrow-down1·7 days agoNever thought about it, but wouldn’t that just fail after the first one it fails to find? I think most install commands return nonzero if nothing is installed Should probably use or instead of and
minus-squareT. Hex@lemmy.dbzer0.comlinkfedilinkarrow-up19·7 days agoNope, this launches all those commands in parallel. Logical and is &&.
minus-squarecanaryWart@programming.devlinkfedilinkarrow-up1·6 days agoAnd strict mode (set -e) is off
Never thought about it, but wouldn’t that just fail after the first one it fails to find? I think most install commands return nonzero if nothing is installed
Should probably use or instead of and
Nope, this launches all those commands in parallel. Logical and is
&&.And strict mode (
set -e) is off