#!/bin/sh for n in history howto news example changelog faq todo readme authors bugs hacking release announce notes features usage changes overview options whatsnew ; do for f in $(find /usr/share/doc -xtype f -iregex ".*${n}.*") ; do rm $f done done for d in example ; do for f in $(find /usr/share/doc -xtype d -iregex ".*${d}.*") ; do rm -fr $f done done for d in /usr/share/lliurex/pixmaps/panorama_fons ; do rm -fr ${d} done exit 0