annotate lib/karma @ 12255:be6572e01f4c draft

<oerjan> t sled lib/karma//s/egrep.*>/egrep \'^<[^>]*>/
author HackEso <hackeso@esolangs.org>
date Fri, 06 Dec 2019 08:05:05 +0000
parents 616be78bd12e
children 9b8fbae1571a
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' |
12255
be6572e01f4c <oerjan> t sled lib/karma//s/egrep.*>/egrep \'^<[^>]*>/
HackEso <hackeso@esolangs.org>
parents: 12254
diff changeset
4 egrep '^<[^>]*> 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