aboutsummaryrefslogtreecommitdiff
path: root/template.sh
diff options
context:
space:
mode:
Diffstat (limited to 'template.sh')
-rwxr-xr-xtemplate.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/template.sh b/template.sh
new file mode 100755
index 00000000..4d498c71
--- /dev/null
+++ b/template.sh
@@ -0,0 +1,9 @@
1#!/bin/sh
2
3for f in $(git ls-files *.j2 common/*.j2); do
4 for ld in locale/*/; do
5 l=$(basename $ld)
6 echo "$f: $l"
7 python template.py $f $l $(basename $f .html.j2).$l.html
8 done
9done