在 DOS 中使用命令输出
我想在 DOS 中运行一个命令,该命令使用另一个命令的输出作为其一部分,单反引号 (``) 允许在 UNIX 或 Linux 上执行此操作。
例如,如果 myCommand
返回一个文件列表,我想在 DOS 中执行一些类似于 UNIX 命令的命令,
grep `myCommand`
那么在 DOS 中该如何执行呢? 预先感谢您的帮助。
I would like to run a command in DOS, which uses the output of another command as its part, something that single back-quote (``) allows to do on UNIX or Linux.
For example, if myCommand
returns a list of files, I would like to execute in DOS some analog of the UNIX command
grep `myCommand`
How would one do that in DOS?
Thank you in advance for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过管道传输两个命令:
但是没有很多命令的输入/输出可以很好地配合。您可能最好使用 for 循环。基本语法是:
You can pipe two commands:
But there aren't a whole lot of commands whos input/ouput plays well with each other. You'd probably be best off using a for loop. The basic syntax is:
除非你尝试 for %%i in ... 语法,否则我在 DOS 中看不到希望。 DOS 不是 Unix。
另一个解决方案是使用 for 循环(使用 @ 和 echo)构建新批次,并在最后启动新批次。
您可能需要递归地执行此操作。
Unless you try the for %%i in ... syntax, I do not see a hope in DOS. DOS is not Unix.
Another solution is to build a new batch using the for loop (with @ and echo) and start the new batch at the end.
You may need to do this recursively.