#!/bin/sh
#
#ident	"@(#)r.fontsscale 1.2 02/01/18 SMI"
#
# Copyright (c) 2000 by Sun Microsystems, Inc.
#

#
# Set 
#
if [ -f /tmp/fonts.scale ]; then
    rm /tmp/fonts.scale
fi

while read src
do
    if [ -w $src ]; then
	sed -e '1 d' -e '/^HG-MinchoL/s/HG-MinchoL/HG-GothicB/p' \
	    -e '/hg mincho l.*-c-/s/-c-/-m-/' $src > /tmp/fonts.scale
	count=`wc /tmp/fonts.scale | awk '{print $1}'`
	echo $count > $src
	sort /tmp/fonts.scale >> $src
	rm /tmp/fonts.scale
    fi
done

exit 0
