#!/bin/sh
for i in $*
do
	if [ -f $i ]
	then
		sed 's/^ligatures.*$/ligatures 0/' $i > $i.tmp 
		mv $i.tmp $i
	fi
done
