in reply to Strange warning message regarding filehandle in an "open" statement

perl is warning you that you've created this file handle, INPUT, but you're not using it anywhere else in the program.

Usually, that's because you've mistyped the handle, but it's more likely happening for you because you haven't written any code to read the file you just opened the handle to yet.

Trek

  • Comment on Re: Strange warning message regarding filehandle in an "open" statement

Replies are listed 'Best First'.
Re^2: Strange warning message regarding filehandle in an "open" statement
by jtgault (Novice) on Sep 25, 2004 at 15:18 UTC
    Thanks to all who replied, I'll give your suggestions a try.

    jt