#!/bin/bash HOME=$PWD/$(dirname $0) cd ../../locale for i in $(ls -1); do if [ "$i" == "CVS" ]; then continue; else echo Processing: $i cd $i/LC_MESSAGES $HOME/make_mo cd ../.. fi done