在 DOS 中使用命令输出

发布于 2024-11-05 20:41:11 字数 230 浏览 0 评论 0原文

我想在 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 技术交流群。

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

发布评论

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

评论(2

醉生梦死 2024-11-12 20:41:11

您可以通过管道传输两个命令:

command1 | command2

但是没有很多命令的输入/输出可以很好地配合。您可能最好使用 for 循环。基本语法是:

for /f %A in ('command1') do command2 %A

You can pipe two commands:

command1 | command2

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 /f %A in ('command1') do command2 %A
虐人心 2024-11-12 20:41:11

除非你尝试 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.

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