| 
#!/bin/rc
#
#	UK traffic congestion reports
#
rac=http://www.rac.co.uk/travelservices/
for ( region in greater_london motorway scotland southern_england midlands north wales )
	hget $rac^$region^/ >[2] /dev/null |
		htmlfmt |
		sed '
			1,/^Sort traffic by$/d
			/^No news to report$/d
			/^Traffic news on your mobile$/,$d
		'
 |