annotate lib/karma @ 0:e037173e0012

Initial import.
author HackBot
date Thu, 16 Feb 2012 19:42:32 +0000
parents
children ad5c5d1b7d04
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e037173e0012 Initial import.
HackBot
parents:
diff changeset
1 #!/bin/sh
e037173e0012 Initial import.
HackBot
parents:
diff changeset
2 count () {
e037173e0012 Initial import.
HackBot
parents:
diff changeset
3 hg log --template '{desc}\n' |
e037173e0012 Initial import.
HackBot
parents:
diff changeset
4 egrep '<[^]]*> karma\'$1 |
e037173e0012 Initial import.
HackBot
parents:
diff changeset
5 fgrep -vix "<$2> karma$1 $2" |
e037173e0012 Initial import.
HackBot
parents:
diff changeset
6 cut -d' ' -f3 |
e037173e0012 Initial import.
HackBot
parents:
diff changeset
7 fgrep -cix "$2"
e037173e0012 Initial import.
HackBot
parents:
diff changeset
8 }
e037173e0012 Initial import.
HackBot
parents:
diff changeset
9 plus=$(count + "$1")
e037173e0012 Initial import.
HackBot
parents:
diff changeset
10 minus=$(count - "$1")
e037173e0012 Initial import.
HackBot
parents:
diff changeset
11 echo $(($plus-$minus))
e037173e0012 Initial import.
HackBot
parents:
diff changeset
12