Skip to content

Instantly share code, notes, and snippets.

@fxbenard
Created January 14, 2014 14:10
Show Gist options
  • Save fxbenard/8418841 to your computer and use it in GitHub Desktop.
Save fxbenard/8418841 to your computer and use it in GitHub Desktop.
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