Artifact b9a0e8198fabaa465ffaa134cffbc1f038829f26:
- File htdocs/table.wiki — part of check-in [fd55f7fe68] at 2016-07-06 22:20:33 on branch trunk — Typos (user: peter size: 613) [more...]
Table diff
Table diff
Eskil can compare tables in comma/tab separated text files and display them like a table.
eskil -table apa1.csv apa2.csv
Eskil will try to auto-detect the separator but you can also give it using -sep. Example for tab separation:
eskil -table -sep '\t' apa1.csv apa2.csv
Eskil has a built in plugin, csv, than can preprocess table files. This example clears the "Short" and "Long" columns before comparison:
eskil -table apa1.csv apa2.csv -block -sep '\t' -plugin csv -csvignore "Short Long"