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