On Wed, Oct 1, 2008 at 8:55 AM, Steffen Mueller <[EMAIL PROTECTED]> wrote: >> #!/usr/bin/perl -w -I/home/valdar/perl/include/ > > That's the culprit. The command line options get lost. This is currently
This #! line is also non-portable: most operating systems will only recognize at most one option to pass down to the "script processor" (the first token after the #!). Cheers, Roderich
