Thread Filehandle. Output-Datei generieren (17 answers)
Opened by incubus at 2015-02-23 16:39

Gast incubus
 2015-02-23 16:39
#179835 #179835
Hallo,
ich versuche die Output-Dateien beim Durchlauf zu generieren.
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use strict;
use warnings;

my @list = qw(a b c d e f g h i j k l m n o p q r s t u v w x y z);

foreach my $f(@list){
        foreach my $s(@list){
                my $fn = $f.$s;
                my $new_fn = '$'.$fn;
                open($new_fn, ">", "Extraction_$fn.txt") or die $!;
        }
}

Ich bekomme folgende Fehlermeldung:
Quote
Can't use string ("aa") as a SCALAR ref while "strict refs" in use at

Wie muss ich mein Skript ändern?

View full thread Filehandle. Output-Datei generieren