view bin/procenv.sh @ 842:03f9657514e9

while we might not want Octave *that* much, we will never want OCAML
author Jeff Hammel <k0scist@gmail.com>
date Sun, 09 Jul 2017 15:01:16 -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