aboutsummaryrefslogtreecommitdiffstats
path: root/po/msgcheckformat_batch.sh
blob: 417e94475d21213ff012ce42fef7d60650c4a41a (about) (plain) (blame)
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