用于比较和生成报告的工具

时间:2010-12-03 14:59:02

标签: comparison

我正在寻找一个工具/程序,我可以生成报告,其中包含添加,修改,删除行等信息。我不是在寻找araxis merge或diff merge工具,而是可以用html / text格式为我生成报告的工具。 非'.EXE'类型的工具很明显,因为我有软件限制。是的我仍然使用可执行的罐子,蝙蝠等工具..种类

1 个答案:

答案 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.

也许它可以奏效?

相关问题