Executing mutiple terminal commands

Hi All,
I am developing a application using apple script which requires executing mutiple terminal commands .I am able to execute one command with the code

Tell Application “Terminal”
Activate
Do Script “cd /test”
end Tell

If i use mutiple Do Scripts each do script opens a new terminal window.Can any one pls tell me how do i execute mutiple terminal commands in the same window through apple script.

Thanks in Advance
Suresh

do script "cd /;ls -al"

separate your commands with a semi-colon “;”

Thank u very much for the reply.Is it possible to make the ternminal window invisible while executing this commands.

Thanks
Suresh

sure, use…

do shell script "cd /;ls -al"