You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
dotfiles/.aliases.d/wordPress.sh

2 lines
162 B

# 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'