1#!/bin/sh
2
3find . -name *.po -print0 | while read -d $'\0' file; do
4  echo Checking "$file"
5  echo y | ./msgcheckformat "$file" fix
6done