web-dev-qa-db-ja.com

`tee`がWindowsで利用できないときにipconfig出力をテキストファイルに保存する方法は?

Ipconfig/allをテキストファイルに保存します。Windows10を使用しています。これをcmdで実行すると

ipconfig /all | tee file.txt

わかった

'tee' is not recognized as an internal or external command,operable program or batch file.

teeのWindowsの代替は何ですか?

7
MikiBelavista

リダイレクトしてみてください。の代わりに | tee、 使用する > output.txt例.

ipconfig /all > output.txt
50
Greg W

ipconfig /all >>logfile.txt 2>>&1

>>logfile.txt 2>>&1は、出力ストリームとエラーストリームの両方を、現在のディレクトリに作成および保存されるlogfile.txtというファイルにリダイレクトします。そのディレクトリに既存のlogfile.txtがある場合、出力はその最後に追加されます。

19
Ciaran McKenzie

MSYS2 をインストールすると、

$ ipconfig -all | tee file.txt

/all-allと記述する必要があることに注意してください。

私の場合、私は得ます:

$ head file.txt

Windows-IP-Konfiguration

   Hostname  . . . . . . . . . . . . : Death-Star
   [..]
8
mvw