#!/bin/sh
if [ -f "$2" ]; then
	if cmp -s "$1" "$2"; then
		echo "not updating $2"
		exit 0
	fi
fi
echo "copying $1 to $2"
cp "$1" "$2"
