I want to be able to toggle between redirects. ie:
Redirect #1 would be: Don't redirect to stdout, Redirect the output to a file.
Redirect #2 would be: Don't redirect to file... rather redirect to stdout
Is it possible to do this at runtime?
|
feedback
|
|
Here it goes for bash (for C it would be pretty the same):
| |||
feedback
|
|
You can redirect from inside a bash script (so it is not the caller to decide) with exec >file or exec >$(tty) | |||
|
feedback
|
|
As a quasi-medieval alternative, you could install Konsole or some other terminal that let's you save the output to a file. You can save the output at any point while an application is running (runtime) on your terminal. On Konsole you would click on: Scrollback > Save Output You didn't specifically said you were looking for a programming solution, so I believe the idea is valid. | |||
|
feedback
|