in reply to Re^2: Sorting Issuein thread Sorting Issue
Turning the glass sphere mode one I guess you may be after something like:
my @strings; while ( whatever ) { # ... push @strings, $status; } my @sorted=sort @strings; [download]