#!/bin/sh

w3m -dump html/$1.html | gawk '/^Assignee/{
count=split($0,c);
for (i=2; i<=count; i++) {
  printf "%s ", c[i];
}
print "";
}
'
