#!/bin/sh

# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.

#
#ident	"$Id: i.sampleslist,v 1.1 2004/06/29 06:48:05 sk23366 Exp $"
# copy the appropriate list.html (pe or ee)
#

PATH=/usr/bin:/usr/sbin

while read src dest
do
      if [ -f "$dest" ]
      then
              echo $dest preserved
      else
	     cp $src $dest 
      fi
done
exit 0
