Language Basics Perl

$_ allows you to write minimalist Perl scripts: 
#!/usr/bin/perl -w
# This script prints out all
# files listed on the command line.
#
while (<>) {    # From 
    print;  # Prints $_
}