----- Original Message -----
From: "Pablo Saratxaga" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 26, 2000 10:43 AM
Subject: Re: [Cooker] GET READY FOR A DISCUSSION -Provide a script to delete
the many internationalization files that bloats the install


Well, you can do it manually:

cd /usr/share/locale
for i in * ; do
case "$i" in
# ones to always keep; add your language if other than English
iso*|en*|C*) ;;
# delete all the rest
*) rm -rf $i ;;
esac
done

>
> Hoyt



Then you have written  the script to include in the distro or made available
through MUO

Thanks,
Hoyt


Reply via email to