#!/bin/bash

# Separate new glifs from those that are already present
# in the UFO. Put ones that are already there in a directory
# named already_there.

for f in uni*.glif; do
  jidir="Junicode-Italic.ufo/glyphs/"
  ff=$jidir$f
#  echo $ff
  if [ -e $ff ]
  then
#    echo $ff
    mv -n $f already_there/
  fi
done;
