Thread require findet Datei nicht (18 answers)
Opened by script im Urlaub at 2009-07-18 17:38

pq
 2009-07-18 22:37
#123366 #123366
User since
2003-08-04
12209 Artikel
Admin1
[Homepage]
user image
2009-07-18T17:35:54 GwenDragon
Per require eingebundene Skripte müssen auführbar sein!
Ist auf Unix jedenfalls so.

hier unter linux nicht.
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
$ ls -l ./foo.pl
-rw-r--r-- 1 tina tina 72 2009-07-18 22:35 ./foo.pl
$ cat ./foo.pl
package foo;
use strict;
use warnings;

print "Compiling foo.pm\n";

1;
$ perl -wle'require "foo.pl";'
Compiling foo.pm
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread require findet Datei nicht