blob: 1a1ea875a9445677ee24c7805810f872ceb115e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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
|