Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有几个 .cmd 文件,我一个接一个地运行。这些可以是几千行文本。我想将输出保存到文本文件,但我不知道如何。我尝试了 > 和 >> 运算符,但文本文件中没有生成任何内容。
有人知道我在做什么错吗?
如果程序将它们的输出发送到 stderr,您需要将 stderr 重定向到 stdout 以便在您的日志文件中捕获它。即
cmd >> cmd.log 2>&1