- or download this
print start_html(-title =>'Senders',
-bgcolor=>'#95B8DB');
- or download this
use CGI ':standard';
- or download this
print "Content-Type: text/html; charset=utf-8\n\n",
- 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');
- or download this
for my $word (sort keys %count) {
print "$word $count{$word}\n";
...
print " \n";
}
close $fh;
- 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>';
- or download this
print '<table><tr><th>Word</th><th>Count</th></tr>';
for my $word (sort keys %count) {
...
}
print '</table>';