8 lines
129 B
Plaintext
8 lines
129 B
Plaintext
|
#!/bin/bash
|
||
|
for fichero in $(ls *.po)
|
||
|
do
|
||
|
echo "Updating $fichero file from template"
|
||
|
|
||
|
msgmerge -U $fichero index.pot
|
||
|
done
|