annotate lib/karma @ 12253:ad5c5d1b7d04 draft

<oerjan> t sled lib/karma//s/egrep.*>/egrep -x \'<[^>]*>/
author HackEso <hackeso@esolangs.org>
date Fri, 06 Dec 2019 07:53:22 +0000
parents e037173e0012
children 616be78bd12e
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' |
12253
ad5c5d1b7d04 <oerjan> t sled lib/karma//s/egrep.*>/egrep -x \'<[^>]*>/
HackEso <hackeso@esolangs.org>
parents: 0
diff changeset
4 egrep -x '<[^>]*> karma\'$1 |
0
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