Run a script in silent mode

Hi All,
I have a script which calls some other scripts.. When i run the parent script all the status messages are displaying on terminal.
I want to know how to suppress dem...

or run a script in silent mode

Thanks,
Firestar

This would send all output to /dev/null

./myscript 1>/dev/null 2>&1

@Ikon

thank you for the reply

Could you please explain what this will do ??

1>/dev/null sends standard output to garbage

2>&1 sends error output to same at 1.

@Ikon,

I am sorry , i didnt gave s complete desc of what exactly i want. here it iss

but i have some status messages in the parent script which i want capture in a file ....

all the outputs from child shells must be garbagedd