i\'m currently refactoring a C-project, throwing about 1000 warnings at me. is there a way to highlight and filter these warnings. (eg make all index warnings red, unused bl
You could pipe the output of your compile through grep:
make 2> error.txt; grep -e error error.txt