in reply to Processing @ARGV using just spaces
For instance:use strict; for (my $j = 0; $j <= $#ARGV; $j++) { print "ARGV[$j] = $ARGV[$j]\n"; }
Notice that the command interpreter that I'm using has different "features" than yours...t.pl one,two three four ARGV[0] = one,two ARGV[1] = three ARGV[2] = four t.pl "one two" three four ARGV[0] = one two ARGV[1] = three ARGV[2] = four
Have fun,
Carl Forde
|
|---|