#!/bin/bash # # $Id: fixlang,v 1.1 2003/07/16 04:34:04 dane Exp $ # if [ ! -f en_us.l ]; then echo "*** You must run this script on the lang directory." echo "" exit 1 fi for lang in $(ls *.l) do echo "*** CHECKING $lang ***" ./fixlang.pl $lang mv fixed.l $lang done