Run multiple scripts one after another in UNIX terminal

Post date: Apr 3, 2014 4:12:08 AM

What you need to do is just put ";" after each script. Doing so will tell the program to run a script, wait until finished, then move to the next script.

>sh script1.sh; sh script2.sh arg1 arg2; sh script3.sh 1 arg2

Please refer to here for more solutions.