2025-04-27 07:49:33 -04:00

18 lines
255 B
Perl

undef $switch;
open(INFILE, "$ARGV[0]");
open(OUTFILE, ">oe50intl.tmp");
while(<INFILE>)
{
if(/intl hack/)
{
$switch = 1;
}
if($switch && !/msoe50/)
{
next;
}
print OUTFILE;
}
close INFILE;
close OUTFILE;