I changed the qx to qq and displayed the string as it is built. The result was exactly as I expected. I even cut and paste the generated string on the command prompt and it executed with the expected results. Here is the generated string: aml_read /l trace /h FTWAEIPD0001 /s "12/04/2000 07:00:00" /b "12/04/2000 08:00:00" /d all /appl commproc | egrep -c -e tty2

....Which once again should be generated from this:

$tty = qx{aml_read /l trace /h $_[3] /s $_[1] /b $_[2] /d all /appl c +ommproc | egrep -c -e $tty_string}; printf("<TR ALIGN=LEFT VALIGN=TOP>\n"); printf("<TD>%s</TD>\n",$tty_string); chomp($tty); printf("<TD>%d</TD>\n",$tty); printf("</TR>\n");

What is also weird is that I can hardcode the variables in the query and get the same results (although it seems to only work outside the loop). I suppose it is possible that I have more than one problem. One problem could be the qx line and the loop may also have errors.

Thanks Bryan


In reply to Re: Re: a dumb question by Motley
in thread a dumb question by Motley

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.