#!/usr/local/bin/perl #This file demonstrates how command line arguments are #processed in perl print "There were " . @ARGV . " arguments passed to the program\n"; print "Those arguments are: @ARGV\n"; print "The name of the executable is: $0\n";