#!/bin/bash

# List glif files not referenced in contents.plist.

for f in *.glif; do
  if ! grep -q $f contents.plist
  then
    echo $f
  fi
done

