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"
|
More like this
- Logging Middleware by Magus 5 years, 8 months ago
- Database migration and dump/load script by akaihola 6 years, 1 month ago
- Facebook shell by stephenemslie 3 years, 8 months ago
- SSL Decorator by pjs 4 years, 2 months ago
- Model dependency graph using graphviz (script) by andrew 4 years, 8 months ago
Comments