Files
zvfs/scripts/search_libzvfs.sh
2026-03-13 01:59:05 +00:00

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