in reply to Re: get environment variables from a bourne file
in thread get environment variables from a bourne file

Sometimes, variables might get set as
x=$(some-command)
or even, horrors:
eval $x=6
You can use set to list all the variables and their values after running the script.