#! /bin/sh
# massage weather output, which screams, hoots and hollers, with crlfs.
finger weather@synoptic.mit.edu 2>&1 |
	tr -d '\15' |
	tr A-Z a-z |
	sed -e '1,/^plan:$/d' -e 's/^\*\*\**$/---/' |
	uniq
