What is the difference between the following two commands to source a file and then print the env
variables?
sh -c . envvars.sh; env
And:
./envvars.sh; env
More specifically, what do the following do:
". envvars.sh" vs. "./envvars.sh"
And:
"sh -c envvars.sh" and "./envvars.sh"