#!/bin/csh -f
if ( "`uname -s`" =~ IRIX* ) then
xdiff ref/${1}*.log cmp/${1}*.log
else
if -e ~/bin/tkdiff then
~/bin/tkdiff ref/${1}*.log cmp/${1}*.log
else
diff ref/${1}*.log cmp/${1}*.log
endif

