Help for this page
push @group, $entire_file[$i] until ( $i % 5 == 0 );
while( $i % 5 != 0 ) { push @group, $entire_file[$i]; }
push @group, $entire_file[$i] unless $i % 5 == 0;