16 lines
183 B
Plaintext
16 lines
183 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
HOME=$PWD
|
||
|
cd ../../locale
|
||
|
|
||
|
for i in $(ls -1); do
|
||
|
if [ $i == 'CVS' ]; then
|
||
|
continue;
|
||
|
else
|
||
|
echo Processing: $i
|
||
|
cd $i/LC_MESSAGES
|
||
|
$HOME/make_mo
|
||
|
cd ../..
|
||
|
fi
|
||
|
done
|