line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package cli::tsv::util; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
52458
|
use 5.006; |
|
1
|
|
|
|
|
4
|
|
4
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
23
|
|
5
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
53
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
cli::tsv::util - The great new cli::tsv::util! |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 VERSION |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Version 0.512 |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=cut |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = '0.512'; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The following 6 files (each with function explanation after ":" ) |
23
|
|
|
|
|
|
|
will be installed by folloinwg INSTALLATION instruction. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
1. colsummary : A great table decipher by looking into each coloumns. |
26
|
|
|
|
|
|
|
2. colgrep : Extension of "grep" command searching on specified columns. |
27
|
|
|
|
|
|
|
3. colsplit : Splitting a TSV file into files of the each column. |
28
|
|
|
|
|
|
|
4. colwidth : Extracting `column width' informations. |
29
|
|
|
|
|
|
|
5. latextable : Useful when you need latex tables from Excel/SQL results. |
30
|
|
|
|
|
|
|
6. csv2tsv |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
The function detail can be shown by --help after each command but |
33
|
|
|
|
|
|
|
as of 2018.03.25, most of them is written in Japanese. Sorry. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 AUTHOR |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
"Toshiyuki Shimono", C<< >> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Copyright 2018 "Toshiyuki Shimono". |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify |
45
|
|
|
|
|
|
|
it under the terms of the GNU General Public License as published by |
46
|
|
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or |
47
|
|
|
|
|
|
|
(at your option) any later version. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, |
50
|
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
51
|
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
52
|
|
|
|
|
|
|
GNU General Public License for more details. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License |
55
|
|
|
|
|
|
|
along with this program. If not, see L. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=cut |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
1; # End of cli::tsv::util |