Are you writing your programs on Windows and copying it "as is" (say, by using binary FTP, HTTP PUT, HTTP file upload, scp, copying on a mounted disk, sneakernet, or something else) to a Unix machine?

In that case, all the lines will have a trailing ^M (before the newline). Without the -w, you're telling the kernel you want to execute "/usr/bin/perl^M". That's a perfectly valid filename under Unix, but it's unlikely such a program exists.

With the -w, the line ends with "-w^M", and perl itself can deal with the Windows ending.

The solution is to strip the ^M's out of your file. FTP ASCII upload will do this automatically for you. Or use a utility like dos2unix, or something like:

perl -wple 's/^M//' yourfile
on the Unix side.

Abigail


In reply to Re: Why do I need -w in a cgi script by Abigail-II
in thread Why do I need -w in a cgi script by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.