Modules

  • ABCDE
  • FGHIL
  • MNOPS
  • TUX

Tools

fileno

Perl 5 version 12.2 documentation
Recently read

fileno

  • fileno FILEHANDLE

    Returns the file descriptor for a filehandle, or undefined if the filehandle is not open. This is mainly useful for constructing bitmaps for select and low-level POSIX tty-handling operations. If FILEHANDLE is an expression, the value is taken as an indirect filehandle, generally its name.

    You can use this to find out whether two handles refer to the same underlying descriptor:

    1. if (fileno(THIS) == fileno(THAT)) {
    2. print "THIS and THAT are dups\n";
    3. }

    (Filehandles connected to memory objects via new features of open may return undefined even though they are open.)