I normally run multiple commands with something like this:
sleep 2 && sleep 3
or
sleep 2 ; sleep 3
but what if I want to run them both in the background from one command line command?
sleep 2 & && sleep 3 &
doesn’t work. And neither does replacing &&
with ;
Is there a way to do it?