#!/bin/bash

for f in `grep -l "<anchor" *.glif`; do
  sed -i.bak -e "/<anchor/d" $f
done
