#!/bin/sh
#
# Copyright (c) 2000 by Sun Microsystems, Inc.
# All rights reserved.
#
#ident	"@(#)i.preserve	1.1	00/12/28 SMI"

while read src dest
do
	if [ ! -f $dest ] ; then
		cp $src $dest
	fi
done
exit 0
