Renders a report to CSV. The CSV format renders each match (duplication) as a single line with the following columns:
lineCountPerFile
is disabled (see ctor params).Trailing each line are pairs (or triples, if lineCountPerFile
is enabled) of fields describing each file where the duplication was found in the format (start line, line count (optional), file path)
. These repeat at least twice.
Example without lineCountPerFile
:
lines,tokens,occurrences
10,75,2,48,/var/file1,73,/var/file2
This describes one match with the following characteristics:
/var/file1
and starts at line 48;/var/file2
and starts at line 73.Example with lineCountPerFile
:
tokens,occurrences
75,2,48,10,/var/file1,73,12,/var/file2
This describes one match with the following characteristics:
/var/file1
, starts at line 48, and is 10 lines long;/var/file2
, starts at line 73, and is 12 lines long.RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4