gpt4 book ai didi

batch-file - 显示 Windows 命令提示符输出并将其重定向到文件

转载 作者:行者123 更新时间:2023-12-03 03:57:50 25 4
gpt4 key购买 nike

如何在 Windows 命令提示符中运行命令行应用程序并同时显示输出并重定向到文件?

例如,如果我运行命令 dir > test.txt,这会将输出重定向到名为 test.txt 的文件,而不显示结果。

如何编写一个命令来显示输出在 Windows 命令提示符中将输出重定向到文件,类似于 Unix 上的 tee 命令?

最佳答案

扩展davor's answer ,您可以像这样使用 PowerShell:

powershell "dir | tee test.txt"

如果您尝试重定向当前目录中 exe 的输出,则需要在文件名上使用 .\,例如:

powershell ".\something.exe | tee test.txt"

关于batch-file - 显示 Windows 命令提示符输出并将其重定向到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/796476/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com