#!/bin/sh

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