aboutsummaryrefslogtreecommitdiff
path: root/template.sh
blob: bc63b943f31bd57d975cfe9bfa0ba3fa9767fb50 (plain) (blame)
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 $(dirname $f)/$(basename $f .html.j2).$l.html
    done
done