#!/bin/sh
# 
# Written by:
# -- 
# John L. Weatherwax                2006-06-01
# 
# email: wax@alum.mit.edu
# 
# Please send comments and especially bug reports to the
# above email address.
# 
#-----

awk -F "\t" '{ sum += $2 }; END {  print "Total number of items is", sum }' file1

