80-locales 175 Bytes
Newer Older
1 2 3 4
#!/bin/sh
# FIXME: there should be less brutal i18n tuning

cd /usr/share/locale
5
rm -r *@*
6 7 8 9 10 11 12
for i in */; do
	case "$i" in
	be*|en*|ru*|uk*) continue;;
	esac
	rm -r "$i"
done
: