2
So I echo output of my programs ran in terminal by
command 2>&1 >> /path/toFile.txt
It creates few limitations that I want to overcome:
- It "freezes" and gives no output in terminal - only way to see actual output is to open output file
- Opening output file is not giving live results. It gives results from time of opening that file
How to echo output to a file and be able to:
a) see live changes in that file (separate program would be needed I assume)
or
b) output to file and see that output in terminal in the same time
1There is a problem with the command - more details please. – suspectus – 2013-12-28T09:15:15.007