#!/bin/sh

N=$1

if which opendiff > /dev/null; then
  TOOL="opendiff"
elif which tkdiff > /dev/null; then
  TOOL="tkdiff  "
else
  TOOL="diff -u -b -B"
fi

$TOOL ${N}.fw.orig ${N}.fw 


