Help for this page

Select Code to Download


  1. or download this
    while (<FILE>) {
      if (/^From .+ 2003/) {
    ...
      }
        print $OUT, @mails;
    }
    
  2. or download this
    while (<FILE>) {
      if (/^From /) {
    ...
      }
        print $OUT, @mails;
    }