#!/bin/sh
# show the last totals lines from a list of hosts.

for	h
do	egrep ' T L:|No ABC' hst/$h | tail -1
done
