You have:
@Default_Tools_List = ( [ 'gzip' ,'app', '' , 'generic_check' ], [ 'gunzip' ,'app', '' , 'generic_check' ], [ 'tar', ,'app', '' , 'generic_check' ], [ 'tr', ,'app', '' , 'generic_check' ], [ 'date' ,'app', '' , 'generic_check' ], [ 'ps', ,'app', '' , 'generic_check' ], [ 'cat', ,'app', '' , 'generic_check' ], [ 'id', ,'app', '' , 'generic_check' ], [ 'echo' ,'app', '' , 'generic_check' ], [ 'pwd', ,'app', '' , 'generic_check' ], [ 'chmod' ,'app', '' , 'generic_check' ], [ 'ln', ,'app', '' , 'generic_check' ], [ 'cp', ,'app', '' , 'generic_check' ], [ 'rpm', ,'app', '' , 'generic_check' ], [ 'clear' ,'app', '' , 'generic_check' ], [ 'dirname' ,'app', '' , 'generic_check' ], [ 'df' ,'app', '' , 'generic_check' ], [ 'Carp' ,'perlm', 'Perl Module - Carp', 'perl_module_check' + ], ) ;
I'd never write that in a program. I'm too lazy. Plus, there's too many ways this could go wrong when a maintainer comes long. I'd write this as:
@Default_Tools_List = ( (map [$_, 'app', '', 'generic_check'], qw( gzip gunzup tar tr date ps cat id echo pwd chmod ln cp rpm clear + dirname df )), [ 'Carp' ,'perlm', 'Perl Module - Carp', 'perl_module_check' + ], ) ;
If you're "cutting and pasting" with an editor while writing a program, you're almost always going to give the maintainer a headache. Please don't.

In reply to Data helper (was Re: ensure - Ensure that the environment is good.) by merlyn
in thread ensure - Ensure that the environment is good. by muralikrishnan

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.