gpt4 book ai didi

batch-file - 无法写入使用 DOS START 命令的批处理文件处理结果

转载 作者:行者123 更新时间:2023-12-04 04:58:22 25 4
gpt4 key购买 nike

我有一个批处理文件,它将使用 DOS 启动命令运行多个程序。但是,我无法将程序的结果写入各自的文本文件。

start program1.exe > result1.txt
start program2.exe > result2.txt

如果我的批处理文件只是
program1.exe > result1.txt

然后就可以将结果写入result1.txt

我的语法有问题吗?谢谢。

最佳答案

只要程序写入stdout,就可以通过使用单独的CMD并转义重定向运算符来获得Start调用的命令的输出

试试这个:

start "" CMD /C program1.exe^>result1.txt
start "" CMD /C program2.exe^>result2.txt

例如:
c:\Scripts\Batch>start "" CMD /C ping -n 1 localhost>testping1.txt

c:\Scripts\Batch>type testping1.txt
*Nothing comes up because the file is empty*
c:\Scripts\Batch>start "" CMD /C ping -n 1 localhost^>testping1.txt

c:\Scripts\Batch>type testping1.txt

Pinging YourComputer [::1] with 32 bytes of data:
Reply from ::1: time<1ms

Ping statistics for ::1:
Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

关于batch-file - 无法写入使用 DOS START 命令的批处理文件处理结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16458733/

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