mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
7 lines
128 B
Bash
Executable File
7 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
for f in `find ./ -iname *.po`; do
|
|
BASE=`basename $f .po`
|
|
DIR=`dirname $f`
|
|
msgfmt $f -o $DIR/$BASE.mo
|
|
done
|