Thread Anfängerfrage: Module (7 answers)
Opened by rk-ger at 2006-11-10 14:04

ich
 2006-11-10 16:13
#71625 #71625
User since
2003-09-19
120 Artikel
BenutzerIn
[Homepage] [default_avatar]
Hallo rk-ger,

die 1. Zeile (den Shebang) brauchst du in deinen "Modulen" nicht.

Du kannst diese Dateien mittels require oder do einbinden.

Code: (dl )
1
2
3
4
# ls -1
hauptscript.pl
funktion1.pl
funktion2.pl


Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl
# hauptscript.pl

use strict;
use warnings;

require( "./funktion1.pl" );
require( "./funktion2.pl" );

print funktion1();
print funktion2();


Gruss
jan
If you tell the truth you don't have to remember anything.
-- Mark Twain

View full thread Anfängerfrage: Module