#!/bin/csh
# Look up a frequently-used email address
# The cursor is to the right of this line
cd $home/Mail
foreach file (*.email)
  grep -i $1 $file
end 
