#!/bin/bash

for f in *.glif; do
  if ! grep -q $f contents.plist
  then
    echo $f
#    cp $f ../../Junicode_notfound/
#     git rm $f
  fi
done

