mirror of
https://github.com/anope/anope.git
synced 2026-06-29 00:06:39 +02:00
55bf4dbcab
git-svn-id: svn://svn.anope.org/anope/trunk@1 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1 5417fbe8-f217-4b02-8779-1006273d7864
18 lines
296 B
Bash
Executable File
18 lines
296 B
Bash
Executable File
#!/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
|