Quincy Ntuli wrote: > open(INVIN, "$sortedListing[$i]") or die "COULD NOT OPEN > $i\n"; >
if the open is failing, you probably want to know why($! tells you why): open(INVIN, $sortedListing[$i]) or die "COULD NOT OPEN $i: $!\n"; david -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]