如何在 Windows 下附加 wget 获取的输出文档(-O)

如何在 Windows 下附加 wget 获取的输出文档(-O)

我每 10 秒循环运行一次 wget(在 Windows 下),以测试与我的 arduino 服务器的通信。

目前,服务器响应转到一个文件,我根据当前时间重命名该文件,因此每 10 秒就会创建一个新文件:

循环核心:

wget --user=UUU --password=PPPPP --append-output=wgetout22.txt --output-document=delme.html 192.168.1.123/light
ren delme.html delme%temps%.html

我希望所有连续的回复都发送到一个文件中。

答案1

我发现这个解决方案可以正常工作循环核心

    wget --user=uuu --password=ppp --append-output=wgetout.txt --output-document=new.html 192.168.1.123/light

输入 new.html >> all.html

相关内容