Artifact 652c8452eedb299d76e1f229d51f0076ff976b48:
- File htdocs/table.wiki — part of check-in [445a0958f0] at 2015-06-03 22:22:06 on branch trunk — Added doc for table (user: peter size: 623)
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 autodetect 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 -plugininfo "-ignore {Short Long}"