Help for this page

Select Code to Download


  1. or download this
    print start_html(-title  =>'Senders',
                     -bgcolor=>'#95B8DB');
    
  2. or download this
    use CGI ':standard';
    
  3. or download this
    print "Content-Type: text/html; charset=utf-8\n\n",
    
  4. or download this
    system("sudo grep -E 'Passed CLEAN.* ->.*' /var/log/maillog | grep -v 
    +root@ > /tmp/PassedCLEAN.txt");
    system("sudo awk '{print \$12}' /tmp/PassedCLEAN.txt > /tmp/PassedCLEA
    +N_1.txt");
    system('sed -e "s/<\(.*\@.*\)>/\1/g" /tmp/PassedCLEAN_1.txt > /tmp/Pas
    +sedCLEAN_2.txt');
    
  5. or download this
    for my $word (sort keys %count) {
      print "$word $count{$word}\n";
    ...
      print " \n";
    }
    close $fh;
    
  6. or download this
    print '<table><tr><th>Word</th><th>Count</th></tr>';
    for my $word (sort keys %count) {
        print "\n<tr><td>$word</td><td>$count{$word}</td></tr>";
    }
    print '</table>';
    
  7. or download this
    print '<table><tr><th>Word</th><th>Count</th></tr>';
    for my $word (sort keys %count) {
    ...
    
    }
    print '</table>';