如何将多个 CSV 文件合并为一个 ods 文件,每个文件一张纸。我有十个 CSV 文件,我想将它们合并为一个由十张表组成的 ods 文件,每个原始 CSV 一个表。这应该在命令行上完成。
答案1
使用 perl:
#!/usr/bin/env perl
use strict;
use warnings;
use autodie;
# CPAN modules required:
use Spreadsheet::Write;
use Text::CSV;
my $xlsx_file = shift @ARGV;
$xlsx_file .= ".xlsx" unless $xlsx_file =~ /\.xlsx$/;
my $xlsx = Spreadsheet::Write->new(file => $xlsx_file);
my $csv = Text::CSV->new({binary => 1});
for my $csv_file (@ARGV) {
my @rows = ();
open my $fh, "<:encoding(utf8)", $csv_file;
while (my $row = $csv->getline($fh)) {
push @rows, $row;
}
$csv->eof or $csv->error_diag();
close $fh;
(my $sheet_name = $csv_file) =~ s/\.[^.]+$//; # strip extension
$xlsx->addsheet($sheet_name);
$xlsx->addrows(@rows);
}
$xlsx->close();
用法如下:
/path/to/create_xlsx.pl file.xlsx *.csv
如果你不喜欢 perl,那么通过 google 搜索可以找到: