如何通过命令提示符提供多个命令(从文本文件)

发布于 2024-11-06 13:54:43 字数 245 浏览 0 评论 0原文

我想知道是否可以执行命令,例如 start xxxxxxx

,其中 xxxxxxx 是从文本文件馈送的,因此例如,如果文本文件包含:

notepad
calc
putty

以下内容将在 cmd 中输出:

start notepad
start calc
start putty

任何人都可以让我知道执行此操作的最简单方法请

I was wondering if its possible to execute a command e.g. start xxxxxxx

where xxxxxxx is fed from a text file, so for example if the text file contained:

notepad
calc
putty

The following would be output in cmd:

start notepad
start calc
start putty

Can anyone let me know the easiest way to do this please

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请叫√我孤独 2024-11-13 13:54:43

如果您的文件名为 cmds.lst,则包含的批处理文件

for /f %%a in (cmds.lst) do start %%a

应该可以解决问题

If your file is called cmds.lst, a batch file containing

for /f %%a in (cmds.lst) do start %%a

should do the trick

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文