4 lines
136 B
Bash
Executable File
4 lines
136 B
Bash
Executable File
pgrep -u postgres -x postgres | while read p; do
|
|
echo "PID=$p"
|
|
sudo grep -m1 libzvfs /proc/$p/maps || echo " (no libzvfs)"
|
|
done |