bat文件比较

1.txt和2.txt两个文件,比较文件是否相同,如果相同退出dos,不相同执行一个3.bat文件

@echo off
fc 1.txt 2.txt>nul
if not %errorlevel%==0 (start "" 3.bat)
exit

 

评论关闭