where are we going, and why am i in this handbasket
Horde on Webspace (no shell) Part1
Because i don’t like the webmailer my host has chosen for me (roundcube) i decided to try installing Horde on the webspace that came with it.
This experiment will most likely fail because i don’t have shell access and the php installation is probably missing vital modules .. but what else is there to do on a saturday evening
Part1: Horde is f***ing huge!
du -sch .
108M total
I’ll start by making horde a little slimer…
This will give me all the folders with locales other than german or english (cd to horde first)
find -iname ??_?? -type d | grep -v de_DE | grep -v en_US | grep -v en_GB
and this will delete them
find -iname ??_?? -type d | grep -v de_DE | grep -v en_US | grep -v en_GB | xargs rm -r
The same for the “.po” files:
find -iname ??_??.po -type f | grep -v de_DE | grep -v en_US | grep -v en_GB | xargs rm -r
du -sch .
51M total
Half the size, nice
| Print article | This entry was posted by me on 2008/12/14 at 02:19, and is filed under english. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |