one script loading(exe) enother script

I would like to create (out of user default) a generic profile that would execute one or more scripts that would initialize connection to database and/or start other deployment tools. So, every new user gets a default profile once I create the user then I would need to MODIFY this profile to load another profile(s) (script) which would have a setup environment for the user to access a
database or Tomcat (Tomcat provides the connection to database but not every body will use Tomcat!) Would anyone have any idea how this user profile should look like to load another profile(s) (script) that would allow them to have access to other utilities provided on the server?
Thanks, gp

To execute another script from a script.
Test if the script exist and then call the script.

for example:

if [ -r ~/.myscript]; then &nbsp&nbsp&nbsp&nbsp&nbsp// see "man [" -r means "True if file exists and is readable"
&nbsp&nbsp&nbsp&nbsp. ~/.myscript &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp// call .myscript
fi