I think this might be your problem:

$cmd[0] = "copy $workarea\\$sec_homepage\\data\\$key $archive\\$sec_ho +mepage\\data\\$key"; $cmd[1] = "del /Q $workarea\\$sec_homepage\\data\\$key"; $cmd[2] = "$cmd_path\\iwsubmit -w -u $vpath/$submit/data/$key \"Conten +t Expired.\""; $cmd[3] = "$cmd_path\\iwsubmit -w -u $vpath_arc/$submit/data/$key \"Su +bmitted to Staging.\"";

None of those variables are passed to the sub, or created in the sub. Therefore, they are unitialized. I think what you mean to do is store those names in the @cmd array. To do that, the $ need to be backslashed.

$cmd[0] = "copy \$workarea\\\$sec_homepage\\data\\$key $archive\\\$sec +_homepage\\data\\$key"; $cmd[1] = "del /Q\$workarea\\\$sec_homepage\\data\\$key"; $cmd[2] = "\$cmd_path\\iwsubmit -w -u \$vpath/\$submit/data/$key \"Con +tent Expired.\""; $cmd[3] = "\$cmd_path\\iwsubmit -w -u \$vpath_arc/\$submit/data/$key \ +"Submitted to Staging.\"";

If that isn't it, please tell us what your function is supposed to do :)


In reply to Re: Debugging "Use of Unitialized Value" message by jryan
in thread Debugging "Use of Unitialized Value" message by wstarrs

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.