Dear Monks,

I am newbie to Perl and I am trying my best to write more effective scripts and make it more elegant. Since last week I am working on automating the manual process which runs over the network to achieve certain task.

Before running the main process which will start executing listed commands in configration file one by one am thinking of doing some checks to make sure every thing is in right place to trap possible common failures.

My concept of doing the check is to have a hash which contains check list commands,
my %checkList = ( DB => DbName, configFile=> filename, iniFile=> filename, remoteHOST=>name );
pass this hash to subroutine,
initilaCheck(\%checkList) || die ¨Check failed!¨;

sub initialCheck { # Iterate over the hash and do following, 1: Check config file in defined location -if failed return; 2: Check connection to Database -if failed return; 3: Check the existence of .ini file in defined location. -if failed return 4. Check connection to Remote hoest, - if failed return return 1; }

Now I am wondering if there is any better way than this to make this process more elegant? Please do suggest.
Thanks

In reply to How to make check process more elegant by Anonymous Monk

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.