重定向

格式:

[command] [> | >>] [filename]

> [command]的輸出儲存到[filename]中。

>> [command]的輸出附加到[filename]中。

例子:

  1. echo Hello World > myfile.txtHello World 儲存到 myfile.txt 中

  2. echo your name is %name% >> myfile.txt 將“你的名字是 xxxx”附加到 myfile.txt 中

  3. dir C:\ > directory.txt 將 C:\的目錄儲存到 directory.txt