Skip to content

Instantly share code, notes, and snippets.

@fxbenard
Created January 14, 2014 14:10
po2mo script
#! /bin/sh
for file in `find . -name "*.po"` ; do msgfmt -o ${file/.po/.mo} $file && rm $file ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment