I wish to make to bash script where two commands run simultaneously and a third command will run only once the first two have finished, I've been playing around with different bash shortcuts but can't seem to quite get it right, so for an example
Code:
sleep 60 &
echo command1;
echo command2
How would I change this so the "sleep 60" timer will start and echo will print "command1" to screen immediately but the second echo will not print "command2" until at least the sleep timer is done and "command1" has finished (whichever is the last to finish)

Thanks for any help
Regards
Mark