summaryrefslogtreecommitdiffstats
path: root/bin/en2en_US
blob: b19e99bfdd2bca21e483304cd3065979a1ce4ee0 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
if [ $# -gt 0 ]; then
	for f in $@
	do
		sed -e '/^#:/s/entities-en.xml/entities-en_US.xml/g' -i ${f}
	done
else
	sed -e '/^#:/s/entities-en.xml/entities-en_US.xml/g'
fi