#!/bin/sh
#
rm -f DIFFFILE
for i in *.f
do
  echo $i
  diff $i ../$i >> DIFFFILE
done
