#!/bin/sh

cvs status 2>&1 |\
awk '
/^File:.*Up-to-date/		{next}
/^cvs status: Examining/	{print "=== " $4 " ==="; next}
/^File:/			{print}
'
