Leser: 2
4 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
use LWP::Simple;
open(FILE, "<scan.txt") or die "\nDatei kann nicht geöffnet werden!\n";
my $host = <FILE>;
foreach ($host)
{
get ("[URL=http://$host/index.html]http://$host/index.html"[/URL]) or die "Keine Index Datei";
print "\nIndex Datei vorhanden";
print "\n$host";
}
close FILE;
my $host = <FILE>;
1
2
3
4
5
6
7
my(@hosts) = <FILE>;
chomp(@hosts);
foreach my $host (@hosts) {
# mach etwas mit $host
}
4 Einträge, 1 Seite |