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 way to simulate a newline.
is equivalent to
echo a echo b
echo a
echo b