KSH script to run other ksh scripts and output it to a file and/or email

Hi

I am new to this Scripting process and would like to know How can i write a ksh script that will call other ksh scripts and write the output to a file and/or email.

For example
-------
Script ABC
-------
a.ksh
b.ksh
c.ksh

I need to call all three scripts execute them and write their output to a file and email. Please Help Its urgent.

#!/bin/ksh
# driver.ksh
(
a.ksh
b.ksh
c.ksh
) > somefile.dat
uuencode somefile.dat somefile.dat | /usr/bin/mailx -s 'file output' me@mycompany.com

Some what clunky but is that what you want?

Yes something similar.Thanks for your help.
I will try and see if this works for me.