Help for this page
# Read file from path my @rows; my $csv = Text::CSV->new ( { binary => 1, sep_char => "\t" } ) ... close $fh; print Dumper \@rows;
$VAR1 = [ { 'ID' => '4564', ... 'Name' => 'Mengano' } ];