#!/bin/sh
./hexdump $1 > /tmp/F1.$$
./hexdump $2 > /tmp/F2.$$
sdiff -s /tmp/F1.$$ /tmp/F2.$$
rm -f /tmp/F1.$$ /tmp/F2.$$
exit 0
