Mercurial > hg > config
view bin/procenv.sh @ 788:fa3ad63ec3a3
https://github.com/novas0x2a/config-files/blob/master/.gitconfig#L89
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 28 Sep 2016 16:42:20 -0700 |
parents | 481b55fc4b96 |
children |
line wrap: on
line source
#!/bin/bash # process environment # list process environment variables # must be run as root if [[ "$(whoami)" != "root" ]] then echo "must be run as root" exit 1 fi # loop over arguments for PROG in $@ do EXIT=0 if PID=$(pidof -x ${PROG}) then echo '='${PROG}: ${PID}'=' cat /proc/${PID}/environ | tr '\000' '\012' | sort else EXIT=1 echo "" fi done