#!/bin/sh
mysqladmin processlist
echo '
       STAT Information about the status  of  the  process.   The
            first  field is R for runnable, S for sleeping, D for
            uninterruptible sleep, T for stopped or traced, or  Z
            for a zombie process.  The second field contains W if
            the process has no resident pages.  The  third  field
            is  N  if  the  process has a positive nice value (NI
            field).
'
ps ax > /tmp/ps
cat /tmp/ps | grep specscript | grep -v grep
cat /tmp/ps | grep dygnscript | grep -v grep
cat /tmp/ps | grep dagscript | grep -v grep
cat /tmp/ps | grep sqlrobotReader | grep -v grep
cat /tmp/ps | grep timerobot | grep -v grep
cat /tmp/ps | grep robotcheck | grep -v grep
cat /tmp/ps | grep urlread | grep -v grep
cat /tmp/ps | grep timeread | grep -v grep
cat /tmp/ps | grep fixread | grep -v grep
cat /tmp/ps | grep gifread | grep -v grep
cat /tmp/ps | grep domain | grep -v grep
cat /tmp/ps | grep urlhead | grep -v grep
cat /tmp/ps | grep sqldelete | grep -v grep
cat /tmp/ps | grep urldate | grep -v grep
cat /tmp/ps | grep verifyhost | grep -v grep
cat /tmp/ps | grep digdug | grep -v grep
cat /tmp/ps | grep linkcount | grep -v grep
cat /tmp/ps | grep topten | grep -v grep
cat /tmp/ps | grep sqltest | grep -v grep
cat /tmp/ps | grep servers | grep -v grep
cat /tmp/ps | grep limitless | grep -v grep
cat /tmp/ps | grep results | grep -v grep
cat /tmp/ps | grep hinfo | grep -v grep
rm /tmp/ps
