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