The Default Variable $_

The default input and pattern-searching variable, used in:

# input

while(<>){...} # only equivalent in while
while( defined( $_ = <>)){...}

# input and pattern matching

while( <FILE>){ print if /http:/;}