Cwilliams@beehaw.org to Linux@lemmy.ml · edit-21 year agoAnyone have a better solution? :Pbeehaw.orgimagemessage-square59fedilinkarrow-up1264arrow-down18
arrow-up1256arrow-down1imageAnyone have a better solution? :Pbeehaw.orgCwilliams@beehaw.org to Linux@lemmy.ml · edit-21 year agomessage-square59fedilink
minus-squareSkull giver@popplesburger.hilciferous.nllinkfedilinkarrow-up13·1 year agoI think you’re thinking of &&. Using a single & will run the task in the background and immediately spawn the next. Using semicolons would execute them in order. Essentially, this is starting a whole bunch of installers all at the same time.
minus-squareSentientted@monero.townlinkfedilinkarrow-up3·1 year agoYeah you are right. Thanks for the correction
minus-square𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍@midwest.sociallinkfedilinkarrow-up5·1 year agoAnd even then, don’t you want ||? You want to run the next one only if the previous one failed, right?
I think you’re thinking of &&. Using a single & will run the task in the background and immediately spawn the next. Using semicolons would execute them in order.
Essentially, this is starting a whole bunch of installers all at the same time.
Yeah you are right. Thanks for the correction
And even then, don’t you want
||
? You want to run the next one only if the previous one failed, right?