6 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
while (<ORA_OUT>) {
# -> Verarbeitung $_
if (/^(ORA|SP2)-\d+:/) {
# -> Verarbeitung $_
# dann zwei Zeilen weiter
<ORA_OUT> for 0 .. 1;
next;
}
# -> Verarbeitung $_
}
$. += 2;
$. += 2;
1
2
3
4
5
6
7
my @ind;
my $i;
for ($i = 0; <F>; $i++) {
$ind->[$i] = tell F;
}
$i = $i > 200 ? $i-200 : 0;
seek (F,$ind[$i],0);
1
2
You can adjust the counter by assigning to $., but this will
not actually move the seek pointer.
6 Einträge, 1 Seite |