#!/bin/sh

for f in $*
do	echo $f:
	echo Keys:   `grep '^K:' $f`
	echo Staffs: `grep '|$' $f |wc -l`
	echo Lyrics: `grep '^[Ww]:' $f |wc -l`
done
