Yes, the path to perl is /usr/bin/perl. But as someone else said, look at the first line of your script, where you tell the OS where to find perl! Let me line it up on a chart below:

Path to Perl.....: /usr/bin/perl Your Shebang Line: #!/user/bin/perl What's wrong: ^ | | Get rid of that 'e' in the first line of your script.

Thus, the path to perl is wrong in your shebang line. What you have in the shebang line of your script does not match where perl is located on your system. If it works executing it from the command line, it's probably because you're typing perl scriptname, so the shebang line's path to perl is circumvented.

Note I keep using 'perl' instead of Perl, because we're talking about the path to perl, the executable program, not Perl, the broader language.


Dave


In reply to Re^3: premature end of script headers by davido
in thread premature end of script headers by fadingjava

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.