From what I understand, you can run a shell script via perl, but any environment variables the shell script is setting will not persist once the perl script terminates? Thats what I gathered from the forums, but I am not quite sure what that means.
Here is my issue, I want a perl script to execute a shell script. That shell script is setting an environment variable, then execing a binary executable. The perl script does not need to know what env variables are being set, only that the shell script ran.
So am I understanding this right, that this cannot be done? A perl script cannot run a shell script that relies on env's being set by the shell? Something about parent/child processes?