#!/bin/bash #echo "" #echo "Status of the Physics Playground Proc 4 System" #echo "" echo "

Status last checked at `date`.

" echo "

Learning Locker to P4 Daemons

" if [ `/usr/bin/pgrep -c NSFtoP4` != "0" ] then echo "

NSF to Pluto Daemon is running.

" fi if [ `/usr/bin/pgrep -c IEStoP4` != "0" ] then echo "

IES to Pluto Daemon is running.

" fi echo "

Evidence Identification Processes

" echo "

The following processes are running in server mode:" echo `/home/ralmond/bin/whichApps EIEvent` echo "

" echo "

The following processes are running in reproccessing mode:" echo `/home/ralmond/bin/whichRerun EIEventRerun` echo "

" echo "

Evidence Accumulation Processes

" echo "

The following processes are running in server mode:" echo `/home/ralmond/bin/whichApps EAEvent` echo "

" echo "

The following processes are running in reproccessing mode:" echo `/home/ralmond/bin/whichRerun EAEventRerun` echo "

" #echo "" exit 0