批处理脚本 - FC 命令

此批处理命令列出了两个文件之间的实际差异。

语法

Fc [fileA] [fileB]

其中 fileS 和 fileS 是需要比较的 2 个文件。

示例

@echo off 
FC lists.txt listsA.txt

输出

上面的命令将显示文件内容(lists.txt和listsA.txt)的差异(如果有)。

❮ batch_script_commands.html