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の代替は何ですか?
リダイレクトしてみてください。の代わりに | tee
、 使用する > output.txt
例.
ipconfig /all > output.txt
ipconfig /all >>logfile.txt 2>>&1
>>logfile.txt 2>>&1
は、出力ストリームとエラーストリームの両方を、現在のディレクトリに作成および保存されるlogfile.txtというファイルにリダイレクトします。そのディレクトリに既存のlogfile.txtがある場合、出力はその最後に追加されます。
MSYS2 をインストールすると、
$ ipconfig -all | tee file.txt
/all
は-all
と記述する必要があることに注意してください。
私の場合、私は得ます:
$ head file.txt
Windows-IP-Konfiguration
Hostname . . . . . . . . . . . . : Death-Star
[..]