#!/bin/bash
for f in 14*.html
do
sed '/GMT/d' <$f >tmp2
sed '1,187{/12Z/d;}' <tmp2 >tmp3
cp tmp3 $f
echo $f
rm tmp2
rm tmp3
done
