r.preserve revision 7c478bd95313f5f23a4c958a745db2134aa03244
#!/bin/sh
#
# Copyright (c) 2000 by Sun Microsystems, Inc.
# All rights reserved.
#
#ident "%Z%%M% %I% %E% SMI"
#
while read src
do
if [ -f $src ]; then
if [ -s $src ]; then
echo "not removing $src"
else
rm -f $src
fi
fi
done
exit 0