#!/bin/sh
#
# Extract all the K: lines and output them with the file names in a
# useful format.  Standard unix pipeline kludge ...

grep '^K:' $* | sed -e 's"\(.*\):K:[ 	]*\(.*\)"\2 \1"' | align l l
