How to run shell commands sequentially or at the same time entered on a single line.
echo 1 sleep 5s echo 2
echo 1; sleep 5s; echo 2
echo 1 && sleep 5s && echo 2