#!/bin/sh
#
#ident	"@(#)r.keytable	1.4"
#
# Copyright (c) 1993 by Sun Microsystems, Inc.
#
#	Keep the existing copy, throw the new one away
#

while read dest
do
	if [ -f $dest ] ; then
		cp  $dest $dest.save
		rm -f $dest
	fi
done
exit 0
