I am unable to execute 2 scripts in parallel through shell script.
I have 3 scripts: script1.sh, script2.sh and installpackages.sh.
My requirement is script1.sh and script2.sh have to run in parallel in the background and after completion of script1.sh and script2.sh, installpackages.sh should be executed.
selid1t601.xayybol.74> vi script.sh
exec script1.sh &
exec script2.sh &
installpackages.sh
can you please suggest how can i execute script1.sh and script2.sh in parallel?