It sounds like the environment under which your process is running doesn't have $ENV{"HOME"} defined (in other words the "HOME" environment variable isn't set). But it's hard to say because you didn't actually bother to explain what "it's not working!" means, so I can only guess. Did you get some error message that might mean something to one of us? Are you running under the "use warnings;" pragma so that if $ENV{"HOME"} is undefined you'll get a warning? That would be helpful.

Update: When I say "It sounds like the environment under which your process is running doesn't have $ENV{"HOME"} defined...", I'm saying that it's probable that your spawned process is running under a different environment instance (ie, as a different user). Thus, even though you think HOME is set, it's not set in the environment under which your job is running. Turning warnings on might tell you that the hash element you're looking for isn't defined. Now you know one possible reason why.


Dave


In reply to Re: Perl Environment Variable by davido
in thread Perl CGI Environment Variable by sasikumar

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.