in reply to remove duplicate value in array
use List::MoreUtils qw/uniq/; my @uniq_array = uniq @array; [download]