#!/bin/sh
if [ ! -e "$2" -o "$1" -nt "$2" ]; then
    cp -av "$1" "$2"
fi
