in reply to #!perl Question

it should normally be... #! /path/to/perl

this tells the system where to find perl, whether it's in your path or not. but windows should use the PATH environment variable... so make sure it's in your path in windows (which can sometimes be weird) if you're using windows.

but if you're using apache for some CGI or whatever, then i believe that you can use just use: #! perl so maybe apache isn't setup correctly if you're going that route.

Replies are listed 'Best First'.
Re^2: #!perl Question
by crusty_collins (Friar) on Oct 03, 2005 at 18:14 UTC
    No windows , apache, etc. just a clean Linux AS3 build. So, you are saying the unix will not pick up perl from the $PATH?