mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-26 23:13:00 +02:00
Origin commit data
------------------
Commit: f0bfe2167c
Author: vanhofen <vanhofen@gmx.de>
Date: 2012-10-24 (Wed, 24 Oct 2012)
Origin message was:
------------------
- locale: move scripts to subdir 'helpers/'
10 lines
298 B
Bash
Executable File
10 lines
298 B
Bash
Executable File
#!/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
|