Thread Output into verschiedene Files (6 answers)
Opened by Gast at 2005-03-24 16:58

Gast Gast
 2005-03-24 16:58
#52942 #52942
Hallo !

Ganz normales Perl-Programm:

-------------
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
sub abc {
hier wird etwas berechnet -egal was....
}

sub def {
hier wird etwas berechnet -egal was....
}

sub ghi {
hier wird etwas berechnet -egal was....
}

# Haupt-Teil des Programms

hier wird etwas gemacht ......
hier auch....

abc();

def ();

ghi();

----------------------------

Frage an Profis: wie mache ich dass der Output von abc() ins File 1.txt geschrieben wird, von def() ins 2.txt und von ghi() ins 3.txt ?

Danke schön im voraus ! :)

P.S. Mit open() habe ich probiert, geht nicht.\n\n

<!--EDIT|renee|1111676607-->

View full thread Output into verschiedene Files