http://qs1969.pair.com?node_id=521862


in reply to Perl interpretation of weird #! line

Was that line the first line of a Perl program?

If that's the case, then the kernel should run what is after the shebang,meaning '@@PERL@@' which I think is an error.

If not, it is just a comment.

Dodge This!
  • Comment on Re: Perl interpretation of weird #! line

Replies are listed 'Best First'.
Re^2: Perl interpretation of weird #! line
by ikegami (Patriarch) on Jan 09, 2006 at 09:35 UTC
    Perl will process any options it finds after the word "perl" on the shebang line. I believe this is case insensitive. So #!@@PERL@@ -w (for example) as the first line of the program should turn on warnings.