#!/bin/sh

# mv_converted_to_xview
# Sun's Convert_to_xview script leaves the SunView files in place
# and the converted files in foo.c.converted_to_xview.
# Since you've probably checked the SunView files into RCS,
# you just need to run this script to have the XView files REPLACE
# the SunView ones.

for f in *.converted_to_xview
do
	echo $f | echo mv $f `sed 's/.converted_to_xview//'`
done | 
	sh -x
