I made a bash function to beautify svn
output, this function show logs one line per commit, it is great! I like it, but if I use it with pipe it does not work.
You can find it on github svn-beautify
$ svn -log -l 2
r22 fabio 2014-03-27 12:38:10 +0100 (gio, 27 mar 2014) 1 line Some comments
r23 fabio 2014-03-27 13:35:17 +0100 (gio, 27 mar 2014) 1 line Some comments
it would be nice if I could use it with | grep
.
svn log -l 10
I see output from my function instead svn standard command, but if I usesvn log -l 10 | grep foo
orsvn log -l 10 | cat
i see output from standartd svn command I would like use|grep
from my svn function – Fabio Mar 27 '14 at 21:51| grep foo
grep don't use output from my function (one line per commit) but from standard svn (more lines per commit). – Fabio Mar 27 '14 at 22:00