mbeason has asked for the wisdom of the Perl Monks concerning the following question:
The part that dies the piece just after the @node_list array. Your guidance is always appreciated!foreach (@test_node_list) { if (-e "/usr/adm/best1_default/collect/$_/noInstance") { # It prob +ably is a node with data if (-e "/usr/adm/best1_default/manager/$_") { # It has +a vis files directory @node_list = (@node_list,$_); if (-e "/usr/adm/best1_default/manager/$_/$vis_year$vis_mo +nth$vis_zero$vis_day*.vis") { system("/appl/perform/best1home/perl/clean_graphics.pl +", "$_"); print "It exists.\n"; } } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Simple File Test
by Zaxo (Archbishop) on Jul 11, 2006 at 23:03 UTC | |
|
Re: Simple File Test
by kwaping (Priest) on Jul 11, 2006 at 23:05 UTC | |
by mbeason (Novice) on Jul 11, 2006 at 23:15 UTC | |
by Fletch (Bishop) on Jul 11, 2006 at 23:20 UTC | |
by kwaping (Priest) on Jul 11, 2006 at 23:20 UTC |