in reply to call multiple perl scripts from within a perl scripts ?
I don't see any error checking, anywhere. What if you cannot open the tar file? What if @filelist does not have the right number of files in it? What if any of the perl scripts fail? Some of these problems could cause your symptoms, possibily silently (depending on your scripts).for my $file (<*.tgz>)) { $tar1->read($file); ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: call multiple perl scripts from within a perl scripts ?
by luckysing (Novice) on Aug 04, 2010 at 21:28 UTC |