gpt4 book ai didi

windows - 批处理文件返回到最后一行文本文件

转载 作者:可可西里 更新时间:2023-11-01 14:15:28 26 4
gpt4 key购买 nike

我有一个文件,其中包含一个文件的输出比较,它写入一个文本文件:
Comparing files C:\LOGS\old.txt and C:\LOGS\NEW.TXT<br/>
***** C:\LOGS\old.txt<br/>
***** C:\LOGS\NEW.TXT<br/>
folder_thats_different<br/>
*****

我需要拉出倒数第二行“folder_thats_different”并放入一个新字符串:
folder contains a file that is different: folder_thats_different

是的,我知道我可以使用另一种语言,但我现在受困于批处理文件。

最佳答案

你可以尝试用for循环读取它并获取当前行,并始终保存上一行

@echo off
setlocal EnableDelayedExpansion
for /f "delims=" %%x in (myFile.txt) do (
set "previous=!last!"
set "last=%%x"
)
echo !previous!

关于windows - 批处理文件返回到最后一行文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4250401/

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