Search found 1 match

by CountZero
Tue Jul 13, 2004 4:47 am
Forum: ExamDiff Pro
Topic: Can I output a simple text file of lines which are different
Replies: 20
Views: 49392

If you use such tools like the GNU unix tools for windows from http://unxutils.sourceforge.net/
you may add to your script something like this:

set DIFF_FILE=diff.txt

REM comp (whatever)
examdiff a b /o:%DIFF_FILE%

REM get rid of identical files
grep -v "^Identical files" %DIFF_FILE% > NOT ...