in reply to Reordering array contents alphanumerically

There is the sort command.

my @unsorted = sort @sorted;

and its quite large

If the left-hand size and right-hand side of sort is the same array, I heard the sort is done in-place.

@array = sort @array;