how to set environment variable for parent process from child process?
For example: I have PARENT and CHILD processes. CHILD process inherited from PARENT process envir
You can't, unless the processes explicitly communicate (IPC, sockets etc.) and one explicitly tells the other to modify its own environment.