Mega Code Archive

 
Categories / Perl / Language Basics
 

A more expanded version for showing how to use the $_

#!/usr/bin/perl -w # # This script prints out all # files listed on the command line. # while (<ARGV>) {     print $_; }