@NAME = (); while() { chop; s/\s*$//; (($n, $m, $c) = split(" ", $_, 3)) >= 3 || next; push(@NAME, $n); $MAP{$n} = $m; $CODE{$n} = $c; } foreach $name (@NAME) { $code = $CODE{$name}; $map = $MAP{$name}; print "$name\t$map\t$code\n"; @to_ucs = (); %from_ucs = (); open(MAP, "< $map"); open(OUT, "> ${name}_ucs.map"); while() { /^#/ && next; s/#.*//; (($i, $u) = split(" ")) || next; $i = hex($i); $u = hex($u); if ($u >= 0xa0) { $to_ucs[$i] = $u; if ($i < 0x80) { print STDERR "$map $i $u\n"; # $from_ucs{$u} = $i; } else { $from_ucs{$u} = $i; } } } # print OUT < $b } keys %from_ucs; $nucs = @ucs + 0; print OUT <