in reply to Re^2: How to suppress "only used once" regarding script file handles (that are in fact used in my module), but do it from a the module?
in thread How to suppress "only used once" regarding script file handles (that are in fact used in my module), but do it from a the module?

Forgoing a lexical (you’re calling it “anonymous”) filehandle gives you some serious problems you may not have considered. Best practice is never GLOBAL handles (excepting built-ins…).

  • Comment on Re^3: How to suppress "only used once" regarding script file handles (that are in fact used in my module), but do it from a the module?