Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    use strict;
    
  2. or download this
    my $textfile = "iwn.txt";
  3. or download this
    open TEXT, $textfile or die "Can't Open $textfile";
    
    my ($email, $id);
    ...
        $email ||= $_ if /Email address:/;
        $id ||= $_ if /Message-Id:/;
    }
    
  4. or download this
    close TEXT;
    
    print $email;
    print $id;