in reply to RE: RE: RE: RE: RE: Re: @ARGV Manipulation
in thread @ARGV Manipulation
to break this into params try this code:
also note: there can be no spaces in the listsif ($ARGV[3] ne "") { $file1 = $ARGV[0]; @list1 = split (/,/, $ARGV[1]); $file2 = $ARGV[2]; @list2 = split (/,/, $ARGV[3]); } else { print "Enter all required parameters"; }
|
|---|