/ Published in: SVN
Note that on Windows you will want to double-quote the string argument to perl -ne rather than single-quoting it. Otherwise this works on Windows (with Cygwin) as well.
Expand |
Embed | Plain Text
svn log -v > myrepo.log perl -ne 'print qq{$1\n} if m{^\s+.*(\.[^.\s]\w+)$}' myrepo.log | sort | uniq -c | sort -r
You need to login to post a comment.
