I have three shell script which I am running as below-
sh -x script1.sh sh -x script2.sh sh -x script3.sh
So each script is executed sequ
The & allows a process to run in the background.
&
sh -x script1.sh & sh -x script2.sh & sh -x script3.sh &