Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    for (my $j = 0; $j <= $#ARGV; $j++) {
        print "ARGV[$j] = $ARGV[$j]\n";
    }
    
  2. or download this
    t.pl one,two three four
    ARGV[0] = one,two
    ...
    ARGV[0] = one two
    ARGV[1] = three
    ARGV[2] = four