#!/bin/sh
#
# Author: Peter Keel <killer@discordia.ch>
# Virtual Cash Account displayer. This was written for a LARP game and
# is not secure in any way. 
echo $USER
export KONTOSTAND=`grep $USER ./konto |awk -F: '$1 ~ '$USER' {print $2}'`
echo $KONTOSTAND
