#!/bin/sh
if cmp -s $1 $2
then
	rm $1
else
	mv $1 $2
fi
