我想通过批处理文件运行一个应用程序。它要求我输入 6 次“是”。我如何在批处理文件中执行此操作。
答案1
你可以使用这个:
@echo off
(echo yes&echo yes&echo yes&echo yes&echo yes&echo yes) >temp
yourprogram.exe <temp & del temp
我想通过批处理文件运行一个应用程序。它要求我输入 6 次“是”。我如何在批处理文件中执行此操作。
你可以使用这个:
@echo off
(echo yes&echo yes&echo yes&echo yes&echo yes&echo yes) >temp
yourprogram.exe <temp & del temp