csv-transpose - Transpose a CSV
This document describes version 1.031 of csv-transpose (from Perl distribution App-CSVUtils), released on 2023-08-06.
csv-transpose --help (or -h, -?)
csv-transpose --version (or -v)
csv-transpose [--debug|--log-level=level|--quiet|--trace|--verbose] [--format=name|--json] [--inplace] [--inplace-backup-ext=str|-b=str] [--input-escape-char=str] [--input-header|--no-input-header|--noinput-header] [--input-quote-char=str] [--input-sep-char=str] [--input-tsv] [--(no)naked-res] [--output-always-quote|--no-output-always-quote|--nooutput-always-quote] [--output-escape-char=str] [--output-header|--no-output-header|--nooutput-header] [--output-quote-char=str] [--output-quote-empty|--no-output-quote-empty|--nooutput-quote-empty] [--output-sep-char=str] [--output-tsv|--no-output-tsv|--nooutput-tsv] [--overwrite|-O|--no-overwrite|--nooverwrite] [--page-result[=program]|--view-result[=program]] -- [input_filename] [output_filename]
See examples in the "EXAMPLES" section.
This utility transpose a CSV file: rows will become fields and vice versa.
Example:
# input.csv name,age andi,17 budi,22 chandra,19 dudi,20 % csv-transpose input.csv row0,row1,row2,row3,row4 name,andi,budi,chandra,dudi age,17,22,19,22 % csv-transpose input.csv --no-output-header name,andi,budi,chandra,dudi age,17,22,19,22
* marks required options.
*
Specify character to escape value in field in input CSV, will be passed to Text::CSV_XS.
Defaults to \\ (backslash). Overrides --input-tsv option.
\\
--input-tsv
Input CSV file.
Default value:
"-"
Use - to read from stdin.
-
Encoding of input file is assumed to be UTF-8.
Can also be specified as the 1st command-line argument.
Specify field quote character in input CSV, will be passed to Text::CSV_XS.
Defaults to " (double quote). Overrides --input-tsv option.
"
Specify field separator character in input CSV, will be passed to Text::CSV_XS.
Defaults to , (comma). Overrides --input-tsv option.
,
Inform that input file is in TSV (tab-separated) format instead of CSV.
Overriden by --input-sep-char, --input-quote-char, --input-escape-char options. If one of those options is specified, then --input-tsv will be ignored.
--input-sep-char
--input-quote-char
--input-escape-char
Specify that input CSV does not have a header row.
By default, the first row of the input CSV will be assumed to contain field names (and the second row contains the first data row). When you declare that input CSV does not have header row (--no-input-header), the first row of the CSV is assumed to contain the first data row. Fields will be named field1, field2, and so on.
--no-input-header
field1
field2
Shortcut for --log-level=debug.
Set log level.
By default, these log levels are available (in order of increasing level of importance, from least important to most): trace, debug, info, warn/warning, error, fatal. By default, the level is usually set to warn, which means that log statements with level info and less important levels will not be shown. To increase verbosity, choose info, debug, or trace.
trace
debug
info
warn
warning
error
fatal
For more details on log level and logging, as well as how new logging levels can be defined or existing ones modified, see Log::ger.
Shortcut for --log-level=error.
Shortcut for --log-level=trace.
Shortcut for --log-level=info.
Choose output format, e.g. json, text.
undef
Output can be displayed in multiple formats, and a suitable default format is chosen depending on the application and/or whether output destination is interactive terminal (i.e. whether output is piped). This option specifically chooses an output format.
Output to the same file as input.
Normally, you output to a different file than input. If you try to output to the same file (-o INPUT.csv -O) you will clobber the input file; thus the utility prevents you from doing it. However, with this --inplace option, you can output to the same file. Like perl's -i option, this will first output to a temporary file in the same directory as the input file then rename to the final file at the end. You cannot specify output file (-o) when using this option, but you can specify backup extension with -b option.
-o INPUT.csv -O
--inplace
-i
-o
-b
Some caveats:
if input file is a symbolic link, it will be replaced with a regular file;
renaming (implemented using rename()) can fail if input filename is too long;
rename()
value specified in -b is currently not checked for acceptable characters;
things can also fail if permissions are restrictive;
Extension to add for backup of input file.
""
In inplace mode (--inplace), if this option is set to a non-empty string, will rename the input file using this extension as a backup. The old existing backup will be overwritten, if any.
Set output format to json.
When outputing as JSON, strip result envelope.
0
By default, when outputing as JSON, the full enveloped result is returned, e.g.:
[200,"OK",[1,2,3],{"func.extra"=>4}]
The reason is so you can get the status (1st element), status message (2nd element) as well as result metadata/extra result (4th element) instead of just the result (3rd element). However, sometimes you want just the result, e.g. when you want to pipe the result for more post-processing. In this case you can use --naked-res so you just get:
--naked-res
[1,2,3]
Whether to always quote values.
When set to false (the default), values are quoted only when necessary:
field1,field2,"field three contains comma (,)",field4
When set to true, then all values will be quoted:
"field1","field2","field three contains comma (,)","field4"
Specify character to escape value in field in output CSV, will be passed to Text::CSV_XS.
This is like --input-escape-char option but for output instead of input.
Defaults to \\ (backslash). Overrides --output-tsv option.
--output-tsv
Output filename.
Use - to output to stdout (the default if you don't specify this option).
Encoding of output file is assumed to be UTF-8.
Can also be specified as the 2nd command-line argument.
Whether output CSV should have a header row.
By default, a header row will be output if input CSV has header row. Under --output-header, a header row will be output even if input CSV does not have header row (value will be something like "col0,col1,..."). Under --no-output-header, header row will not be printed even if input CSV has header row. So this option can be used to unconditionally add or remove header row.
--output-header
--no-output-header
Specify field quote character in output CSV, will be passed to Text::CSV_XS.
This is like --input-quote-char option but for output instead of input.
Defaults to " (double quote). Overrides --output-tsv option.
Whether to quote empty values.
When set to false (the default), empty values are not quoted:
field1,field2,,field4
When set to true, then empty values will be quoted:
field1,field2,"",field4
Specify field separator character in output CSV, will be passed to Text::CSV_XS.
This is like --input-sep-char option but for output instead of input.
Defaults to , (comma). Overrides --output-tsv option.
Inform that output file is TSV (tab-separated) format instead of CSV.
This is like --input-tsv option but for output instead of input.
Overriden by --output-sep-char, --output-quote-char, --output-escape-char options. If one of those options is specified, then --output-tsv will be ignored.
--output-sep-char
--output-quote-char
--output-escape-char
Whether to override existing output file.
Filter output through a pager.
This option will pipe the output to a specified pager program. If pager program is not specified, a suitable default e.g. less is chosen.
less
View output using a viewer.
This option will first save the output to a temporary file, then open a viewer program to view the temporary file. If a viewer program is not chosen, a suitable default, e.g. the browser, is chosen.
Display help message and exit.
Display program's version and exit.
This script has shell tab completion capability with support for several shells.
To activate bash completion for this script, put:
complete -C csv-transpose csv-transpose
in your bash startup (e.g. ~/.bashrc). Your next shell session will then recognize tab completion for the command. Or, you can also directly execute the line above in your shell to activate immediately.
It is recommended, however, that you install modules using cpanm-shcompgen which can activate shell completion for scripts immediately.
To activate tcsh completion for this script, put:
complete csv-transpose 'p/*/`csv-transpose`/'
in your tcsh startup (e.g. ~/.tcshrc). Your next shell session will then recognize tab completion for the command. Or, you can also directly execute the line above in your shell to activate immediately.
It is also recommended to install shcompgen (see above).
For fish and zsh, install shcompgen as described above.
% csv-transpose file.csv
Please visit the project's homepage at https://metacpan.org/release/App-CSVUtils.
Source repository is at https://github.com/perlancar/perl-App-CSVUtils.
perlancar <perlancar@cpan.org>
To contribute, you can send patches by email/via RT, or send pull requests on GitHub.
Most of the time, you don't need to build the distribution yourself. You can simply modify the code, then test via:
% prove -l
If you want to build the distribution (e.g. to try to install it locally on your system), you can install Dist::Zilla, Dist::Zilla::PluginBundle::Author::PERLANCAR, Pod::Weaver::PluginBundle::Author::PERLANCAR, and sometimes one or two other Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond that are considered a bug and can be reported to me.
This software is copyright (c) 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016 by perlancar <perlancar@cpan.org>.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=App-CSVUtils
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
To install App::CSVUtils, copy and paste the appropriate command in to your terminal.
cpanm
cpanm App::CSVUtils
CPAN shell
perl -MCPAN -e shell install App::CSVUtils
For more information on module installation, please visit the detailed CPAN module installation guide.