Hi Monks,
I am confused in system() and backticks commands. I have a perl script which executes another perl script via system command.
I set some env variables on my shell(xterm) before launching the parent script....
I notice the following
* If i call the the executed script via the system() function in the parent script
the env variables which were set are passed to the executed script.
* If i use the backticks instead, the env variables are not passed.
As i am novice to perl, can someone pls explain the behavior
Thanks in advance