gpt4 book ai didi

Windows 批处理脚本 : Perform a command if two files are the same!

转载 作者:可可西里 更新时间:2023-11-01 12:36:48 25 4
gpt4 key购买 nike

我原以为这将是一项非常简单的任务,但我已经为此苦苦挣扎了几天,而且有点沮丧!我对 Windows 批处理脚本不是很熟悉,所以如果您知道答案,请尽可能简单:)

基本上,我有一个 Windows 关机脚本(.bat 文件),我想知道其中两个文本文件是否相同(即它们的内容完全相同),如果是,则执行 goto 命令(例如转到第 10 行)

我不知道该怎么做!非常感谢您的帮助!

最佳答案

没有goto:

fc /b file1 file2 > nul
if errorlevel 1 (
echo different
) else (
echo same
)

关于Windows 批处理脚本 : Perform a command if two files are the same!,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5124243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com