ddrumguy,

Okay. So you have a bunch of files in /tivoli/maestro/schedlog and you know the file begins with M$date but you don't know what the last 4 digits are? Correct? Will there only be one file that begins M$date or will there be multiples? Do you run the conman proc against only one at a time or can it accept many?

I'd drop the $1, $2, $3, $4 stuff all together (I don't think its doing anything for you since $_ is not defined anywere - you should get warnings from these lines).

What you want is opendir, grep, readdir and closedir.

#!/usr/bin/perl -w use strict; print "Post Production Report program \n"; print "Enter the Date (yyyymmdd) for the report: \n"; chomp( my $date= <STDIN> ); print "Enter report type (d for detail or s for summary): \n"; chomp( my $type= <STDIN> ); my $reptr = substr( $type, 0, 1 ) eq "d" ? "-detail" : "-summary"; chdir( "tivoli" ) or die "cannot cd to directory"; opendir(DIR, ".") or die "cannot open directory: $!\n"; my @files = grep { /M$date/ } readdir(DIR); closedir DIR; foreach( @files ) { print "Would run: conman reptr $reptr $_\n"; }

-derby


In reply to Re: Re: Re: variable mixing numbers,characters & scalers by derby
in thread variable mixing numbers,characters & scalers by ddrumguy

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.