Help for this page

Select Code to Download


  1. or download this
    while ($requests = <REQUESTS>) {
          if ($requests ne "\n") {
              print MAIL "$requests";
          }
          }
    
  2. or download this
    print MAIL grep !/^$/,<REQUESTS>;
    
  3. or download this
    while ($requests = <REQUESTS>) {
        print MAIL $requests if $requests ne "\n";
    }
    
  4. or download this
    while ($requests = <REQUESTS>) {
        print MAIL $requests unless $requests=~/^$/;
    }