Help for this page
open FH, 'file.name' or die "Cannot open 'file.name' for reading: $!\n"; ... # $item->{description} is the description # $item->{function} is the function name }
# If sorting ascending asciibetically. my @sorted_items = sort { $a->{description} cmp $b->{description} } @i +tems;