When I run a program that outputs "\n" to the terminal, I'd like to configure the terminal beforehand (perhaps via stty) to not do a Carriage Return, but to only move the cursor down a row. To actually consider it a Line Feed, and not to perform a Carriage Return.
For example, if the program prints "123\n456", I would like to see:
123
456
but I, of course, currently see:
123
456