#!/bin/bash
for fichero in $(ls *.po)
do
   echo "Updating $fichero file from template"

   msgmerge -U $fichero index.pot 
done