For example, when running
echo a; echo b
in the terminal, its output is:
a b
It seems to me that the semi
It's a statement separator. You could also try
sleep 1; echo a
which will wait one second and then display a. As would
sleep 1 && echo a