code looks good, ill probably use it a bit next subroutine rewrite. Of course, i wont use or die because the file may not exist in some directories if the polling doesnt go through for some stores.
Comment on Re: Re: Re: Re: parsing/munging problems
Of course, i wont use or die because the file may not exist in some directories
The 'or die' idiom is just a reminder that the open might fail, something which should always be taken into account. The appropriate action, e.g. die-ing or ignoring, depends completely on your context ...