Hi:
I don't understand your question completely. If a parent script calls a child as in this example:
#!/bin/sh
# parent.ss
vara=/usr/bin; export vara
echo "calling a.ss"
a.ss
echo "calling b.ss"
b.ss
# end example
the two child scripts inherits the parents shell including variable vara provided vara is exported.
(if you're interested, check out thread 822-255445 for a discussion on how a child shell can change the parent).
Regards,
Ed