How to pass a parameter from one Shell-script to another Shell-script

Dear Friends,

Please help me.
How can I pass a parameter from one Shell-script to another Shell-script.
Example:

FirstScript.sh
-------------
./SecondScript.sh 'paramater'

And

SecondScript.sh
---------------
doing something with passed parameter from FirstScript.sh

Please help me as I am new to scripting stuff.

Regards,
Subodh

use $1 in your second script to get the parameter.

try out the following one , as mentioned by ghostdog,

content of SecondScript.sh
var1=$1

and content of FirstScript.sh ,
./SecondScript.sh "parameter"