#!/bin/sh

for file in `ls *.log`
do
  echo 
  echo 
  echo
  echo
  echo NEW FILE: $file
  echo
  diff $file bck/$file
done
