8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
|
#!/bin/bash
|
||
|
for fichero in $(ls *.po | sed 's/\..*//g')
|
||
|
do
|
||
|
echo "Compiling $fichero.mo from $fichero.po"
|
||
|
|
||
|
msgfmt $fichero.po -o $fichero.mo
|
||
|
done
|