3 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
foreach $workfile (@ARGV) {
if (-e $workfile){
open (SENTFILE, ">>$workfile.ok");
printf ("aktuelle Input-Datei: %s\n", $workfile);
open (INFILE, $workfile) or die "Datei $workfile nicht gefunden\n";
while ($workline = <INFILE>){
if (length($workline) > 1 ){
@elemente = split(/#/,$workline);
$elemente[0]=~ s/^ *(.*) *$/$1/g;
chomp ($elemente[16]);
1 2 3 4
if (length($workline) > 1 ){ chomp $workline; @elemente = split(/#/,$workline); $elemente[0]=~ s/^ *(.*) *$/$1/g;
1 2 3 4
if (length($workline) > 1 ){ $workline =~ s![\r\n]+$!!; @elemente = split(/#/,$workline); $elemente[0]=~ s/^ *(.*) *$/$1/g;
3 Einträge, 1 Seite |