#!/bin/csh -f

if ($#argv < 1) then
  tntext | wc
else
  foreach file ($*)
  echo "`tntext $file | wc` $file"
  end
endif
