#!/bin/sh

cd /home/jar/IETF/www.ietf.org/html.charters
/bin/rm -f /tmp/statinps

grepafter 10 Chair Director *charter.html > /tmp/statinps

for entry in `cat /home/jar/Bin/chairstats.dat`
do
  comp=`echo "$entry" | cut -f1 -d:`
  pat=`echo "$entry" | cut -f2 -d:`
  n=`egrep "$pat" /tmp/statinps | wc -l`
  echo $n"	"$comp
done |
sort -n -r




