sonicscott9041 has asked for the wisdom of the Perl Monks concerning the following question:
Thanks!sub write_columns { my $columns = shift; if($columns->{$fields[0]}) { $csv->print(\*STDOUT, [ map { $columns->{$_} } @fields ] ); } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: File output instead of STDOUT
by ikegami (Patriarch) on Dec 03, 2009 at 19:44 UTC | |
|
Re: File output instead of STDOUT
by Fletch (Bishop) on Dec 03, 2009 at 19:27 UTC |