1 2 3 4 5 6 7 8 9 | #!/bin/sh
#
# django-thanks-score - count how many times someone thanked you
# on the #django IRC channel
#
# Usage: ./django-thanks-score <nickname>
#
LOGDIR=$HOME/.purple/logs/irc/*@irc.freenode.net/#django.chat
cat $LOGDIR/*.txt | egrep -ic "\) [^:]+:.*$1.*thank"
|
Comments