#!/bin/bash
for font in *.ttf; do
  echo "Checking font: $font"
  otfinfo -i "$font"
  echo "--------------------"
done
