summaryrefslogtreecommitdiff
path: root/template.sh
blob: 1c743617b59c0f341dc1a8a2be3e7b7b71e13cff (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

for f in $(git ls-files *.j2); do
    for ld in locale/*/; do
	l=$(basename $ld)
        mkdir -p $(basename $l)
	echo "$f: $l"
	python template.py $f $l
    done
done