Help with how to run multiple script with concurrent processes runs sequentially.

Hi,

The problem detail is follows

I have three individual scripts .
SCRIPT A

sh -x sqoop_channels_nc_daily_01.sh  & sh -x sqoop_channels_nc_daily_02.sh  & sh -x sqoop_channels_nc_daily_03.sh

SCRIPT B

sh -x sqoop_contacts_nc_daily_01.sh  & sh -x sqoop_contacts_nc_daily_02.sh & sh -x sqoop_contacts_nc_daily_03.sh  &
 

SCRIPT C

sh -x sqoop_tags_nc_01.sh  & sh -x sqoop_tags_nc_02.sh  & sh -x sqoop_tags_nc_03.sh  & 
 

Now I want to run SCRIPT A , SCRIPT B SCRIPT C sequentially means once SCRIPT A is completed then only SCRIPT B gets executed then SCRIPT C

but when I am executing

SCRIPT A;
SCRIPT B;
SCRIPT C;

SCRIPT B get executed as soon as SCRIPT A gets executed same goes with SCRIPT C. Can you please help me with this.

Thanks,
Himani

The shell will wait if they do, but can't stop a script from backgrounding itself. What are the contents of these scripts?