[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] CGI WRAP Error? * Correction
- Subject: Re: [cobalt-users] CGI WRAP Error? * Correction
- From: "Brian Curtis" <admin@xxxxxxxxxxx>
- Date: Wed Jun 21 09:10:50 2000
- Organization: Pomfret Computer Technologies
> >Unless you made a typo, that should be:
> >
> >#!/usr/bin/perl
> >
> >Remeber: Pound (#), Bang (!)/path/to/perl
>
> Yes, I missed that part when I clipped it.
>
> I do have: #!/usr/bin/perl
>
> I even tried:
> #!/.../perl --
>
> Doesn't work.
Did you try
#!/usr/bin/perl --
Or follow the instructions literally and use "#!/.../perl --" ?
The first line of a Perl/CGI script (or just about any other standalone
script for that matter) should be the location of the interpreter.
BC