#!/bin/sh
 
# ----------------------------------------------------------------------
# i.preserve
#
# copy only if file does not exists
#

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

exit 0

#
# end of file
# ----------------------------------------------------------------------



syntax highlighted by Code2HTML, v. 0.9.1