#!/bin/sh

w3m -dump html/$1.html | awk '/^Current U.S. Class/{
count=split($0,c);
for (i=4; i<=count; i++)
  print c[i];
}'
