Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
255 B

  1. undef $switch;
  2. open(INFILE, "$ARGV[0]");
  3. open(OUTFILE, ">oe50intl.tmp");
  4. while(<INFILE>)
  5. {
  6. if(/intl hack/)
  7. {
  8. $switch = 1;
  9. }
  10. if($switch && !/msoe50/)
  11. {
  12. next;
  13. }
  14. print OUTFILE;
  15. }
  16. close INFILE;
  17. close OUTFILE;