annotate lib/karma @ 12407:9b8fbae1571a draft

<oerjan> sled ../lib/karma//3s/log/log -k \'> karma\' /
author HackEso <hackeso@esolangs.org>
date Fri, 18 Jun 2021 00:57:28 +0100
parents be6572e01f4c
children
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 () {
12407
9b8fbae1571a <oerjan> sled ../lib/karma//3s/log/log -k \'> karma\' /
HackEso <hackeso@esolangs.org>
parents: 12255
diff changeset
3 hg log -k '> karma' --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