1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<title>Table diff</title>
<h1>Table diff</h1>
Eskil can compare tables in comma/tab separated text files and display
them like a table.
<verbatim>
eskil -table apa1.csv apa2.csv
</verbatim>
Eskil will try to autodetect the separator but you can also give it
using -sep. Example for tab separation:
<verbatim>
eskil -table -sep '\t' apa1.csv apa2.csv
</verbatim>
Eskil has a built in plugin, csv, than can preprocess table files. This example clears the "Short" and "Long" columns before comparison:
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<title>Table diff</title>
<h1>Table diff</h1>
Eskil can compare tables in comma/tab separated text files and display
them like a table.
<verbatim>
eskil -table apa1.csv apa2.csv
</verbatim>
Eskil will try to auto-detect the separator but you can also give it
using -sep. Example for tab separation:
<verbatim>
eskil -table -sep '\t' apa1.csv apa2.csv
</verbatim>
Eskil has a built in plugin, csv, than can preprocess table files. This example clears the "Short" and "Long" columns before comparison:
|