Leser: 1
|< 1 2 >| | 11 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sub header
{
my $output = @_ ;
open(OUTPUT, ">$output") or die "Cant open File: $!\n";
while (<DATA>)
{
print OUTPUT;
}
__DATA__
Mein Text
close(OUTPUT);
}
1
2
3
4
5
6
7
8
9
10
11
12
sub header
{
my $output = @_ ;
open(OUTPUT, ">$output") or die "Cant open File: $!\n";
my $text <<"END_TEXT";
Mein Text
END_TEXT
print OUTPUT "$text";
close(OUTPUT);
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
sub header { my $output = @_ ; open(OUTPUT, ">$output") or die "Cant open File: $!\n"; while (<DATA>) { print OUTPUT; } __DATA__ Mein Text close(OUTPUT); }
bytebrain+2008-11-04 16:28:08--Das kann so nicht funktioneren.
1 2 3 4 5 6 7 8 9 10 11 12 13
open(OUTPUT, ">output.tst") or die "Cant open File: $!\n"; while (<DATA>) { print OUTPUT; } close(OUTPUT); __DATA__ Mein Text
tecker+2008-11-04 16:22:44--Ok danke. Hatte mich mit Here Dokumenten bislang noch nicht beschäftigt.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
sub header { my $text; my $output = "output.txt"; open(OUTPUT, ">$output") or die "Cant open File: $!\n"; ($text = <<HERE_TARGET) =~ s/^\s+//gm; Mein Text HERE_TARGET print OUTPUT "$text"; print "$text\n"; close(OUTPUT); }
LanX-+2008-11-04 16:57:05--<<_EOF ; # Mit Variableninterpolation, aber man erkennt es nicht
|< 1 2 >| | 11 Einträge, 2 Seiten |