- locale: move scripts to subdir 'helpers/'

This commit is contained in:
svenhoefer
2012-10-24 15:45:57 +02:00
parent ddef0da724
commit f0bfe2167c
6 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/sh
cut -d' ' -f1 english.locale | sort | uniq > /tmp/log
for i in *.locale; do \
echo $i:; \
echo "----------------"; \
cut -d' ' -f1 $i | diff -u - /tmp/log; \
echo; \
done
rm /tmp/log