[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] #! is not interpreted
- Subject: Re: [cobalt-users] #! is not interpreted
- From: Katrin Çappar <k.cappar@xxxxxxxxx>
- Date: Wed Feb 28 04:39:43 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
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