c++ - Anjuta terminal output not long enough -
i'm using anjuta on lubuntu write program performs calculations on historical stock price data (2 years worth, 1 line per market day). when run program , it's output printed terminal in anjuta, of lines overwritten. else out there use anjuta , have solution this? there way outside of lightweight ide see of terminal output?
there several solutions problem.
- you can redirect output of program file. in terminal window of anjuta, in project's root directory: - src/executablename > outputfilename.txt 
which can see editor or viewer.
- you can redirect pager: - src/executablename | less 
(exit less 'q')
- you can enter terminal (external anjuta), go project directory, , of above.
just fair - anjuta isn't that lightweight.
Comments
Post a Comment