How can I redirect output from MAKE i such a way that I get only --silent output to screen, but full MAKE-output to a log file?
Or can this be achieved through some sdout/stderr redirection magic?
or
Where filter is a program that passes only what you want to see. Use grep or sed or something else. |
|||||
|
|
This was answered before with a comment:
and 4 days have passed, i think that it no longer need to be responded. |
|||||||
|
make > file.log 2>&1and you'ill get a "--silent" output to screen. This is a very basic shell usage. – D4RIO Mar 19 '11 at 16:36