in reply to CSV file
#!/usr/bin/perl use strict; my @arrays = qw( a b c d ); open( my $file, "> /tmp/csv_file" ); print $file join ",\n", @arrays; close( $file ); [download]