0

例:

for /? | if (this stream has word "the" in it) {echo the line with "the"}

リダイレクトされたストリームのテキストをどうにかして分析する必要があります。

4

2 に答える 2

0

http://www.febooti.com/products/command-line-email/batch-files/ms-dos-command-redirection.html

このWebサイトには、DOSで実行できるさまざまなタイプの配管に関する優れた情報があります。

于 2009-09-25T21:15:41.947 に答える
-1

縦棒「|」を使用して、パイプを使用します。

例:

forの出力をfindにパイプします。

for /? | find "the"

出力の最初の数行:

  command    Specifies the command to carry out for each file.
             Specifies parameters or switches for the specified command.
To use the FOR command in a batch program, specify %%variable instead
If Command Extensions are enabled, the following additional
forms of the FOR command are supported:
    If set contains wildcards, then specifies to match against directory
于 2009-09-25T21:21:31.230 に答える