#!/bin/sh
#
#ident	"@(#)i.fontsscale 1.4 04/07/15 SMI"
#
# Copyright (c) 2000 by Sun Microsystems, Inc.
#

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

while read src dst
do
	cp $src $dst
	sed -e '1 d' -e '/hg mincho l.*-m-/d' \
	    -e '/hg mincho l.*-c-/s/HG-GothicB/HG-MinchoL/' \
	    $src > /tmp/fonts.scale
	count=`wc /tmp/fonts.scale | awk '{print $1}'`
	echo $count > $dst
	cat /tmp/fonts.scale >> $dst
	rm /tmp/fonts.scale
done

exit 0
