2010-12-03 69 views
0

我想找一个工具/程序,我可以生成报告说与添加,修改,删除行的信息。我不是在寻找araxis合并或差异合并类型的工具,而是可以以html /文本格式为我生成报告的工具。 A 非'.EXE'类型的工具是可观的,因为我有软件限制。是的,我仍然使用exeruable罐,蝙蝠等工具。种类工具比较和生成报告

回答

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. 

也许它可以工作?

+0

它会做目录比较吗? – srinannapa 2010-12-03 15:33:54