I have a script that QA Manager runs. I want him to take a look at terminal from time to time to take a note if any errors appear.
The problem is that the script have a ton of output that we do not need to see.
What I am trying to implement:
- stderr only goes to terminal
- stdout only goes to full-log.txt
- stderr goes to full-log.txt as well as stdout
Another way is to
- stderr with stdout go to full-log.txt
- stderr only go error-log.txt
Will be very grateful if someone can help with that.