I use the next code in my bat file
@echo off
myTerminalApp.exe >> output.txt
when I run the bat file, it runs in the terminal and my app works. It stores all output to the txt file as expected, but does not display the output in terminal.
So how can I make it save the output to the txt file and display that output in the terminal window as well?