#!/bin/sh
#
# This parses your pidgin system logs and tells you when someone 
# usually logs in, or when they log out, or change their status. 
#
# v0.1, <patraule@gmail.com>

test -z "$1" -o -z "$2" -o -z "$3" &&\
	echo "syntax: $0 id [in|out|about] myid" && exit

lua fold-logs.lua $1 $2 ~/.purple/logs/yahoo/$3/.system/*

