How I can find $PATH variable for every running process on my Linux system?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
You find them in The content of the |
|||
|
|
|
Try reading and parsing the contents of the /proc/$pid/environ file You should be able to enumerate over all the PID directories in /proc/ and pull out the PATH variables from there. |
|||
|
|