#!/bin/sh
# search /etc/skeykeys on system latour for the skey string for
# this user OR user specified in 1st parameter
if [ -z "$1" ]
then
	WHO=`/usr/bin/whoami`
else
	WHO=$1
fi
if [ -f /etc/skeykeys ]
then
	SKEYINFO=`/bin/grep "^$WHO[ 	]" /etc/skeykeys`
fi
echo $SKEYINFO|/usr/bin/awk '{print $3-1,$4}'
