The <FILEHANDLE> operator in in perl, with a null FILEHANDLE. In general, this operator reads successive lines from the specified file. In perl, <> is magical, as it automagically reads from files specified on the command line, and then from stdin.

Many simple perl programs look like this:

while (<>) {
# do some processing
}