Bochs/bochs/gui/keymaps/convertmap.pl
2002-03-11 15:04:58 +00:00

11 lines
201 B
Perl
Executable File

#!/usr/bin/perl
while (<STDIN>)
{
chop;
s/^ *//;
if (/^#/ || /^ *$/) { print "$_\n"; next;}
($key, $equals, $xksym) = split (/ +/);
printf ("%-45s %-10s %s\n", $key, 'none', "XK_$xksym");
}