hey, put the following code into a file called checkq.sh.
#!/bin/bash
el1=`cat lastenterq`
dl1=`cat lastdoneq`
# this assumes you are only looking for line changes. not changes in lines.
# use bin/diff for that
el0=`wc -l enterq|awk '{print $1}'`
dl0=`wc -l doneq|awk...