#!/bin/sh

find . \( -name '*.F90' -o -name '*.inc' \) \
     -type f -exec egrep '^[0123456789 ]' {} \; | wc -l
