Linux에서 실행되는 프로세스에서 환경 변수를 가져오는 방법
731 단어 environmentlinuxsoftware
/proc/
에서 실행 중인 모든 프로세스를 찾을 것입니다. 프로세스 id마다 별도의 디렉터리가 있습니다.ps aux | grep [process name] # to get the process ID
cat /proc/[process ID]/environ | tr '\0' '\n'
위 명령의 역할은 다음과 같습니다.tr
통역 Reference
이 문제에 관하여(Linux에서 실행되는 프로세스에서 환경 변수를 가져오는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bogdancornianu/how-to-get-environment-variables-from-a-running-process-in-linux-36cd텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)