Although, as much as I hate to remind it, my first suggestion would be to 'use strict' in your code. I've tried running your script with 'use strict' and it brought up a hoard of errors and warnings. I'm not, however, implying that this may be the cause of your troubles, but there's still a lot of 'unknowns' and blind spots left if you don't use the strict pragma in your code.
Update:
From the
system manpage, you may try retrieve a little bit more info on the specific error of the ImageMagic script like so:
my $sys_res = system("identify -verbose $DIR[$a] >> $dump");
if ($sys_res) {
# an error occurred!
my $exit_value = $? >> 8;
my $signal_num = $? & 127;
my $dumped_core = $? & 128;
die "system failed: $exit_value, $signal_num, $dumped_core!"
}
You also say,
The problem occurs with a few files that are bad and bring down the programme.
Do you mean the
system() call causes your actual script to terminate, not only the ImageMagic script? Please verify. Frankly, I never came across a problem where a call to the system() function would kill the parent process. Maybe that it is implemented differently on the Win 32 platform as it doesn't do 'forking' quite well or differently.
_____________________
<code>
# Under Construction
</c ode>
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.