Whenever a compilation results in an error output longer then one screen, I have to scroll back to see the first error (possibly a cause of the later ones) and fix it. This is especially a pain in Screen, where I first have to press ctrl+a Esc to scroll.
Is there a command line switch in javac that lets the error messages be displayed in reverse order, or is there some generic command line magic I can achieve the same effect with?
Update: Just to clarify, I always use the command line for compilation, an IDE is not an option.
javac ... | tail -rBut personally, I'd usejavac ... | less, which automatically gives me the first screen of output.