In Perl, I need to read the environment of other processes.
Any ideas?
In linux it looks like the /proc/<pid>/environ
psuedofiles contain the environ variable passed when the process was created. If you have sufficient permission, you can read those.
They do not appear to track changes in the processes environment after launch.
That suggests that you would have to disect the processes memory dump to get what you're asking for.
Tricky.