#!/bin/sh
#
# @(#)i.preserve	1.1 04/09/13
#
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
#
# Simply preserve the existing contents of the file.
#
while read src dest
do
	if [ ! -f $dest ] ; then
		cp $src $dest
	fi
done
exit 0
