#!/bin/bash
for f in 14*.html
do
sed '/Note:/d' <$f >tmp
sed '/12Z/d' <tmp >tmp2
cp tmp2 $f
echo $f
rm tmp
rm tmp2
done
