Re: Sqlite compiler spam delenda est.
From: Julian Foad <julianfoad_at_btopenworld.com>
Date: Tue, 1 Oct 2013 14:16:05 +0100 (BST)
Gabriela Gibson wrote:
> Because sqlite produces ~50000 extra letters of bumpf per compile that often
Cool. I like tricks like this.
At the end of my build script I print a slightly condensed summary of all the warnings that were produced, by piping the (stderr) log file content through the following command:
grep -B1 'subversion/.*: warning:' |
(The second sed expression replaces the curly quotes that my UK-localized GCC outputs with plain ASCII quote marks to make it less likely to display wrongly on screen.)
> Any subsequent compiles that are started with the line below will use the
I expect you were wondering if grep could do this by itself. It can:
make > stdout.report 2> >(tee stderr.report | grep -v -F -f stderr.unique >&2)
- Julian
> You can also type this line when you invoke the emacs compile buffer and your
|
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.