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.
我在 Linux(Ubuntu)中有一个 C++ 程序,它在命令终端中打印很长的输出。
如何通过 Linux 命令将此输出从命令终端直接复制到 .txt 文件?
您的 shell 通过输出重定向为您执行此操作:
$ ./a.out > theoutput.txt
一般来说,你输入;
command > file.txt
大于符号 > 将标准输出重定向到文件。