Accessing variables of one shell script in another shell script

I have a variable $exe in a shell script file a.sh which I need to access in another shell script file b.sh. How can I do that? :rolleyes:

Thanks!!

If I am understanding you correctly you should be able to source the script with the period
. <script>

What shell are you using?