Commit 29906e77 authored by Anton Midyukov's avatar Anton Midyukov

rescue: cleanup extra locales

parent 1ddc2393
#!/bin/sh
# cleanup extra locales
CLEANUP_DIRS="/usr/lib/locale /usr/share/locale"
for CLEANUP_DIR in $CLEANUP_DIRS; do
cd "$CLEANUP_DIR"
rm -fr $(ls -1 |sed '/en_US/d' | tr -s '\r\n' ' ')
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment