9 Einträge, 1 Seite |
1
2
3
4
foreach (1..10){
$result = get "www.webseite.de/data/index$_.html";
print $result;
}
1
2
3
4
5
6
format_c@linux:~> perl
use LWP::Simple;
for (1..10) {
my $result = LWP::Simple::get("http://www.lan.de");
print $result;
}
1
2
3
4
foreach my $i (1..6){
$whois = `whois`; # Hier steht die Whois Abfrage
print $whois;
}
1
2
3
4
5
6
7
8
9
10
for my $i (1..6) {
my $command = "whois ...";
unless (open (CMD, $command . "|")) {
die "Error in executing $i '$command': $!\n";
} # unless
else {
print <CMD>;
close (CMD);
} # else
} # for
[E|B,10.08.2003, 10:09]
Code: (dl )1
2
3
4foreach (1..10){
$result = get "www.webseite.de/data/index$_.html";
print $result;
}
Wieso klappt das nicht? Es wird immer nur der letzte Schleifendurchlauf ausgeführt. Die anderen nicht.
[E|B,10.08.2003, 10:09]
[E|B,10.08.2003, 16:59]Naja... bin enttäuscht für wie dumm du mich hälst! *lol*
9 Einträge, 1 Seite |