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.
希望这是一个简单/愚蠢的问题。
我正在将程序输入和输出重定向到 Windows 中的文本文件。
例子:
program.exe < in.txt > out.txt
但是从输入文件输入的文本不会显示在输出文件中(或不重定向输出时的屏幕)。有什么方法可以轻松展示吗?我试过谷歌,但我找不到任何东西。
取决于program.exe输入的内容。program.exe如果实际将其输出写入标准输出,您只会在文件(或控制台,如果您不重定向)中看到它。如果您需要以多种方式发送输入(例如同时发送到程序和屏幕),而程序本身实际上并没有为此做准备,您需要类似的东西tee- 或真正的 shell,如bash.
program.exe
tee
bash