#!/usr/bin/python

import sys, string, os

lines = sys.stdin.readlines()
DIR = "~/rf/mk64/i10n/assets/zh/textures/raw/"

def execute( command ):
    print ( command );
    os.system( command );


die "Usage: raw2font.pl <input> <output>\n" unless $#ARGV==1;

$in = shift;
$out = shift;
$count = 0

open(INFILE, "<$in") or die "Can't open $in: $!";
open(OUTFILE, ">$out") or die "Can't open $out: $!";


