12 lines
165 B
Plaintext
12 lines
165 B
Plaintext
|
#!/bin/sh
|
||
|
# FIXME: there should be less brutal i18n tuning
|
||
|
|
||
|
cd /usr/share/locale
|
||
|
for i in */; do
|
||
|
case "$i" in
|
||
|
be*|en*|ru*|uk*) continue;;
|
||
|
esac
|
||
|
rm -r "$i"
|
||
|
done
|
||
|
:
|