Thursday, June 8, 2017

Beyond Compare Script from command line

You can call Beyond Compare 3 in scripting mode with a /silent flag to have it run automatically and generate a report without showing a window. I would recommend creating the report initially without the silent flag, as it will suppress all messages and errors. Once you are confident the report will run as expected, then simply add /silent to the command line call.

BC3's scripting mode is run with:

C:\Users\Abhishek>"C:\Program Files\Beyond Compare 4\bcompare.exe" "@D:\bcscript
.txt" "D:\1" "D:\2" "D:\bcreport.html"

Where bcscript.txt would be a text file containing a few commands:
load "%1" "%2"
expand all
folder-report layout:side-by-side options:display-mismatches output-to:"%3"

2 comments:

java-8-streams-map-examples

package com.mkyong.java8; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Arrays; import java.util.List; im...