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
you want this?
$ sh -x script1.sh & sh -x script2.sh & sh -x script3.sh &
Update explanation :
'&'
makes the scripts run in background so that prompt does not wait for it to complete'&'
also can be used to chain commands on one line similar to running commands one by one on command line.