1

I'm using Beyond Compare 4 from the command line to compare to files, which generates output report with differences. But, I'm not able to display the line numbers of differences. I used following script:

file-report layout:side-by-side options:display-mismatches output-to:%3 output-options:html-color,wrap-word %1 %2

Please suggest, how can I display the line number in report.

mayersdesign
  • 5,062
  • 4
  • 35
  • 47

1 Answers1

0

Use the line-numbers report option to include line numbers in a side-by-side report.

file-report layout:side-by-side options:display-mismatches,line-numbers output-to:%3 output-options:html-color,wrap-word %1 %2

See the Scripting Reference topic in Beyond Compare 4's help file for a full description of all file-report options.

Chris Kennedy
  • 2,639
  • 12
  • 11