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.
我正在 Lubuntu 上使用 Anjuta 编写一个程序,该程序对历史股价数据(价值 2 年,每个交易日一行)进行计算。当我运行程序并将其输出打印到 Anjuta 的终端时,大部分行都被覆盖了。那里还有其他人使用Anjuta并对此有解决方案吗?在这个轻量级 IDE 之外有没有办法查看所有终端输出?
您的问题有几种解决方案。
您可以将程序的输出重定向到文件。在 Anjuta 的终端窗口中,在项目的根目录下:
src/executablename > 输出文件名.txt
然后您可以使用编辑器或查看器查看。
您还可以重定向到寻呼机:
src/可执行文件名 | 较少的
(用'q'少退出)
公平地说 - Anjuta 并不是那么轻巧。