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.

20 lines
439 B

  1. #convert internal message file to .mc
  2. #internal message file contains OnLine help info which is stipped out by this script
  3. $Help = 0;
  4. while (<>) {
  5. if ( not m/^[|]/ ) {
  6. if ( m/^--\>/ ) {
  7. $Help = ! $Help;
  8. }
  9. else {
  10. if ( ! $Help ) {
  11. $_ =~ s/^#// ;
  12. print $_;
  13. }
  14. }
  15. }
  16. }