#! /bin/bash
# Last edited on 2012-05-24 15:06:53 by stolfi

cat .maybe-voynich-mail \
  | gawk '/./{ print $3; }' \
  > .sfiles

egrep -a -i -e 'pirah|everett' `cat .sfiles` | egrep -v -i -e '(leroy|loren|tad|bud|christopher|rufus|stooge|dale|haxel|hazel|oliver|a|john|andre.|jessie)[ .w]*everett|everette|everett[w. ]*(espinoza|hinson|howe|hendricks)'

cat .maybe-voynich-mail-gz \
  | gawk '/./{ print $3; }' \
  > .gzfiles

for f in `cat .gzfiles` ; do
  echo "${f}"
  cat ${f} | gunzip | egrep -a -i -e 'pirah|everett'
done
