PerlZealot has asked for the wisdom of the Perl Monks concerning the following question:

What is the meaning of the filehandle "RFI"? Here is some example code: open(RFI, "<$mydir/$myfile");

Replies are listed 'Best First'.
Re: What is RFI?
by marto (Cardinal) on Jan 04, 2008 at 16:43 UTC
    RFI could mean various things, or none of those mentioned there. The filehandle could be named pretty much anything, though I would hope that it is a TLA relating to something within the code in question. There are various Perl RFI 'scanner' scripts around.

    See File Input and Output and FileHandle for further information.

    Update: Added the line prior to this one.

    Martin
      Oops. Sorry. Figured it out. Not very good for my first posting...
Re: What is RFI?
by citromatik (Curate) on Jan 04, 2008 at 16:41 UTC

    Exactly the same as open(THIS_IS_THE_NAME_I_CHOOSE_FOR_MY_FILEHANDLE, "<$mydir/$myfile")

    citromatik