#! /bin/sh
#
# $Id: sumup,v 1.2 2000/04/30 10:10:39 urabe Exp $
#
if [ $# -eq 0 ]
then
	f=1
else
	f=$1
fi
awk '{s+=$'$f'}
END{print s}'
