#!/bin/sh
for i in rdf-testcases/*/*.nt
do
  echo -n "${i}: "
  awk '/^[ \t]*(#.*)?$/ { next; } { print $0; } ' $i | wc -l
done
