[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] #! is not interpreted



Hi all,

I will try to explain more detailed :-)

Perl scripts called from the shell by
=> perl test.cgi
will work
Just calling 
=> test.cgi
will not work.

If the first line i.e. 
#! /usr/bin/perl
is interpreted, there is no need to call the script with
perl test.cgi. The 1. line tells the shell to use the
perl interpreter.


Katrin