# Find PO files, process each with msgfmt and rename the result to MO alias po2mo='for file in `find . -name "*.po"` ; do msgfmt -o ${file/.po/.mo} $file ; done'