1 2 3 4 5
#!/bin/sh for i in ??.po; do base=`basename "$i" .po` msgfmt --statistics "$i" -o "$base.mo" done