> 
> Try splice here:
> 
>    my $third = int(scalar @allfiles / 3);
>    my @set   = ( [ splice @allfiles, 0, $third ], # first third
>                  [ splice @allfiles, 0, $third ], # second third
>                  [ @allfiles ],                   # the rest.
>    );
> 
umm sure, just go about 5million feet above my conprehension right now ;)

> What's the value of $_ ???
should be the passed in # from the for 1..2
so I can say hey, lets parse array$_ or array$_ which would
inturn be array1, array2......

Ron

Reply via email to