我正在寻找一个工具/程序,我可以生成报告,其中包含添加,修改,删除行等信息。我不是在寻找araxis merge或diff merge工具,而是可以用html / text格式为我生成报告的工具。 非'.EXE'类型的工具很明显,因为我有软件限制。是的我仍然使用可执行的罐子,蝙蝠等工具..种类
答案 0 :(得分:0)
如果您使用的是Windows计算机,则fc.exe
是内置dos应用程序。
FC [/A] [/C] [/L] [/LBn] [/N] [/OFF[LINE]] [/T] [/U] [/W] [/nnnn]
[drive1:][path1]filename1 [drive2:][path2]filename2
FC /B [drive1:][path1]filename1 [drive2:][path2]filename2
/A Displays only first and last lines for each set of differences.
/B Performs a binary comparison.
/C Disregards the case of letters.
/L Compares files as ASCII text.
/LBn Sets the maximum consecutive mismatches to the specified
number of lines.
/N Displays the line numbers on an ASCII comparison.
/OFF[LINE] Do not skip files with offline attribute set.
/T Does not expand tabs to spaces.
/U Compare files as UNICODE text files.
/W Compresses white space (tabs and spaces) for comparison.
/nnnn Specifies the number of consecutive lines that must match
after a mismatch.
[drive1:][path1]filename1
Specifies the first file or set of files to compare.
[drive2:][path2]filename2
Specifies the second file or set of files to compare.
也许它可以奏效?