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

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