Thread Datei-Handle als Referenz? (3 answers)
Opened by Optalamia at 2004-04-01 00:00

format_c
 2004-04-01 00:14
#81372 #81372
User since
2003-08-04
1706 Artikel
HausmeisterIn
[Homepage] [default_avatar]
So?
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
format_c@linux:~> perl 
open FILE,'>','test.txt' or die $!;
schreibwas(*FILE);
close FILE;

sub schreibwas {
my $fh = shift;
print $fh "test";
}
_ _ END _ _
format_c@linux:~> cat test.txt
testformat_c@linux:~>


Gruß Alex

View full thread Datei-Handle als Referenz?