#!/bin/csh
foreach foo ( `find . -type f -print` )
echo Fixing $foo ...
ed - $foo <fix.ed
end
