如何通过命令提示符提供多个命令(从文本文件)
我想知道是否可以执行命令,例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的文件名为 cmds.lst,则包含的批处理文件
应该可以解决问题
If your file is called cmds.lst, a batch file containing
should do the trick