Linux下查看进程的环境变量 发表回复 在linux bash下输入: envof() { sed 's/\x0/\n/g' /proc/${1}/environ; } 然后使用: envof pid 即可