in reply to Re: Unassociated Filehandles and Subroutines
in thread Unassociated Filehandles and Subroutines

The problem is that you're using the same file handle (FH) for all of your files, so when you try to close two files, you end up closing the same one twice.

Actually, each time an unlocalized global file handle is opened, the previously attached file is closed. One name, one handle.

After Compline,
Zaxo

  • Comment on Re^2: Unassociated Filehandles and Subroutines