#!/bin/sh
#
#ident	"@(#)r.renamenew	1.1	07/10/17 SMI"
#
# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
TAG=new

while read fname
do
	if [ -f $fname.$TAG ]; then
		/usr/bin/rm $fname.$TAG
	fi
done
exit 0
