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

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